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



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__


--
Jeff

.



Relevant Pages