Re: New here. dbi:DBM:mldbm=Storable;f_dir=/foo/bar. Inserts when asked to update and other weirdness



On Saturday 16 September 2006 20:23, Jeff Zucker wrote:
Lane wrote:
my $dbh = DBI->connect('dbi:DBM:mldbm=Storable;f_dir=/foo/bar');
$dbh->{RaiseError} = 1;

I can't reproduce your problem. Please run the following script and
send the output back to the list.

#!/usr/bin/perl -w
use strict;
use DBI;
my $dbh = DBI->connect('dbi:DBM:mldbm=Storable;f_dir=/foo/bar');
print $dbh->dbm_versions;
__END__
Thanks, Jeff.

Here's the output:

DBD::DBM 0.03 using SDBM_File + MLDBM + Storable
DBD::File 0.35
DBI::SQL::Nano 0.03
SQL::Statement 1.15
DBI 1.52
OS freebsd (5.4-release-p14)
Perl 5.008008 (i386-freebsd-64int)

.