Help for this page

Select Code to Download


  1. or download this
    use DB_File;
    my %database;
    tie %database, 'DB_File', "bar" or die "Can't tie: $!";
    
  2. or download this
    tie %database, 'DB_File', "bar"
    
  3. or download this
    tie %database, 'DB_File', "bar", O_CREAT|O_RDWR, 0666, $DB_HASH;