tweakthecode has asked for the wisdom of the Perl Monks concerning the following question:
it only updates $user_db if $user_data is less than or equal to 620 chars in length. Any ideas how I could fix this would be most appreciated as need to store longer strings! Thanks!!tie %hash, "DB_File", $user_db, O_RDWR; $hash{$email} = $user_data; untie %hash;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: DB_File limited to values 620 chars in length
by PodMaster (Abbot) on Nov 05, 2004 at 15:00 UTC | |
|
Re: DB_File
by trammell (Priest) on Nov 05, 2004 at 15:25 UTC |