Help for this page

Select Code to Download


  1. or download this
    use DB_File;
    tie my %hash, "DB_File", "file.db", O_RDWR|O_CREAT, 0666;
    # now use hash as normal
    
  2. or download this
    use Tie::Hash::DBD;
    tie my %hash, "Tie::Hash::DBD", "dbi:SQLite:dbname=db.tie";
    # now use hash as normal