Help for this page

Select Code to Download


  1. or download this
    use MLDBM;
    use Fcntl;
    $dbm = tie %o, 'MLDBM', 'testmldbm', O_CREAT|O_RDWR, 0640 or die $!;
    
  2. or download this
    $tmp = $mldb{key};            # retrieve value
    $tmp->{subkey}[3] = 'stuff';
    $mldb{key} = $tmp;
    
  3. or download this
    use MLDBM;
    use Fcntl;
    ...
    }
    $hash{$nameplace} = $tmp;