my $db = new DBM::Deep "$dumpfile" or die "Can't open Dump FILE!"; $db -> import ($probeset);
And now bless the Object with the specific Class!my $db = new DBM::Deep "$dumpfile"; my $struct = $db -> export();
my $class = 'Probeset'; my $probeset = bless $struct, $class;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Implement Object Persistence (II)
by Joost (Canon) on Apr 29, 2005 at 14:35 UTC | |
by tucano (Scribe) on Apr 30, 2005 at 19:14 UTC | |
|
Re: Implement Object Persistence (II)
by jZed (Prior) on Apr 29, 2005 at 17:49 UTC | |
|
Re: Implement Object Persistence (II)
by dragonchild (Archbishop) on Apr 29, 2005 at 15:01 UTC | |
by merlyn (Sage) on Apr 29, 2005 at 15:52 UTC | |
by dragonchild (Archbishop) on Apr 29, 2005 at 17:28 UTC | |
by merlyn (Sage) on Apr 29, 2005 at 17:34 UTC | |
by dragonchild (Archbishop) on Apr 29, 2005 at 17:45 UTC | |
|
Re: Implement Object Persistence (II)
by JediWizard (Deacon) on May 19, 2005 at 19:30 UTC |