in reply to database unclarity when finding 'unitinitaliazed' everywhere
your problem is either that $lost is undefined, or, as pg has indicated, that $dbm{$lost} exists, but is undefined. You could check for definedness before going through this snippet:
You might also want to check the rest of your code to find out just why either of these two is undefined, and whether that was intentional or not.if defined ($lost) { if (exists ($dbm{$lost}) && defined ($dbm{$lost}) ) { .. the rest of your snippet } }
CU
Robartes-
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: database unclarity when finding 'unitinitaliazed' everywhere
by sulfericacid (Deacon) on Mar 17, 2003 at 07:42 UTC |