DB_File is just an interface to the Berkeley DB C library. On Unix boxes
this library is usually called something like libdb.a or libdb.so. So the
first step is to determine if you have a copy of Berkeley DB on your system.
I don't know offhand whether Berkeley DB works with Z/OS.
Assuming Berkele
Hi,I''m using perl-5.8.7 on Z/OS. The testcase i'm runing is # Use the DBM module. use DB_File;$database="dbtest.db";if ( ! ( tie %DBFILE, 'DB_File', $database, O_RDWR|O_CREAT, 0600, $DB_HASH ) ) { print "Could not open (\"tie\") message database file \"$database\".\n"