Help for this page

Select Code to Download


  1. or download this
    use NBDM_File;
    tie %hash, '/some/path/databasefile',  1, 0;
    $hash{'key'} = 'value';
    my $value = $hash{'key'};
    untie %hash;
    
  2. or download this
    use FreezeThaw qw/freeze thaw/;
    
    ...
    my $cd = thaw( $hash{'My Music'} );
    printf "Album %s with %s tracks\n", $cd->{'title'}, 
         $#{$cd->{'tracks'}};