in reply to Hash-to-string
An example of how to use it:
MLDBM uses Data::Dumper to do the serialization, and stores the resulting serialized structure into a db on disk.use MLDBM; tie (%myhash, MLDBM, "filename", O_RDWR|O_CREAT, 0664); %myhash = { one => [0, 1, 2], employee => {serial_num => 1, name => "b +ob"}, mary => 7};
Hope this is what you were looking for.
Alan
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: RE: Hash-to-string
by merlyn (Sage) on Aug 18, 2000 at 06:24 UTC |