Help for this page

Select Code to Download


  1. or download this
    use DB_File;
    
    ...
        '0ws456' => 'Cars',
        '02100m' => 'Numbers'
    );
    
  2. or download this
    use DB_File;
    
    my %hash
    tie (%hash, 'DB_File', 'hash.dbm', O_RDWR) || die $!;
    
  3. or download this
    my %hash
    tie (%hash, 'DB_File', 'hash.dbm', O_RDONLY) || die $!;