pc2 has asked for the wisdom of the Perl Monks concerning the following question:
this question doesn't concern perl directly, but: is there any command-line Windows program or perl code to convert from some common database format (like csv or mysql) to Berkeley DB? thank you in advance.#!c:/perl/bin/perl.exe print "Content-type: text/html\n\n"; use BerkeleyDB; my $filename = "dict"; my $db = new BerkeleyDB::Hash -Filename => $filename, -Flags => DB_CREATE or die "Cannot open file $filename: $! $BerkeleyDB::Error\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: converting from some database format do Berkeley DB.
by jZed (Prior) on Jul 19, 2007 at 00:37 UTC | |
by pc2 (Beadle) on Jul 19, 2007 at 12:05 UTC | |
by jZed (Prior) on Jul 19, 2007 at 16:04 UTC | |
|
Re: converting from some database format do Berkeley DB.
by pc2 (Beadle) on Jul 20, 2007 at 23:40 UTC |