in reply to dbmopen not opening a db file
dbmopen( %TEST, "/home/lab/access.db", 0666 ) or die "Couldn't open database: $!\n";
My first guess is that you're not successful in opening the database, and that extra "or die..." stuff will alert you to the problem.
Also, have a look at the documentation for dbmopen, where it says that the dbmopen function has been largely superseded by tie.
Dave
|
|---|