in reply to Can't locate TIEHASH
If that still gives you the same error than it means you likely typo'd it as pointed out by BrowserUk.#!/usr/bin/perl use strict; use warnings; use DB_File; # This line is really important tie my %HASH, 'DB_File', 'file' or die $!;
Cheers - L~R
|
|---|