A class that ties a hash table to two DBM files so that there is no length problem.
use BigDB_File;
tie %dbm, BigDB_File, $fileName, $mode;
# Use the %dbm array.
untie %dbm;
BigDB_File is a module which allows a dbm database to have no length limitations.
Ties the big dbm file.