D
dan baker
I have a little application that saves data into a tied hash on a *nix
webserver. I would like to be able to pull a copy local to my PC
running windows 98 for testing and backup with as little pain as
possible.
So far the only way I've been able to do this is write export-import
utilities to dump the DB to a text file and reload it at the other
end. Gets to be a pain to maintain if fields change, etc. Is there a
way to more directly convert the binary hash file that gets created to
avoid this manual export-import conversion?
....I use a lot of the defaults for tie() when writing to the hash
like:
use DB_File;
tie %tempHash , 'DB_File' , "${cfgRelPath_cgi2DB}/${dbfile}" ;
... blah, blah, blah
thanks,
d
webserver. I would like to be able to pull a copy local to my PC
running windows 98 for testing and backup with as little pain as
possible.
So far the only way I've been able to do this is write export-import
utilities to dump the DB to a text file and reload it at the other
end. Gets to be a pain to maintain if fields change, etc. Is there a
way to more directly convert the binary hash file that gets created to
avoid this manual export-import conversion?
....I use a lot of the defaults for tie() when writing to the hash
like:
use DB_File;
tie %tempHash , 'DB_File' , "${cfgRelPath_cgi2DB}/${dbfile}" ;
... blah, blah, blah
thanks,
d