On Thu, Jun 21, 2001 at 08:48:08AM -0500, Prabhu, Vrunda P (UMC-Student) wrote:
> I have the following code:
[snip]
> open Fin, "mockalias";
Always check your open calls:
open Fin, "mockalias" or die("Unable to open file \"mockalias\": \l$!.\n");
[snip]
> My question is the followi
Victor had graciously answered some of my questions earlier about using
DB_File in a perl CGI. I am now wondering about the following:
I have the following code:
**
$filename="./mockalias.db";
tie %ALIAS, 'DB_File', "$filename", O_RDWR|O_CREAT, 0644, $DB_H