Clear questions and runnable code get the best and fastest answer |
|
PerlMonks |
comment on |
( [id://3333]=superdoc: print w/replies, xml ) | Need Help?? |
Warning: this reads the entire data set into memory, so be careful not to read huge amounts of data.
You can avoid this by creating other problems :) Inside of get_hash(), can become This will block other processes, and you will need to roll throught the complete dataset with fetchall_* or fetchrow_* and friends to avoid future errors on the handle unless you want to set up a brand new database for each query. It does seem to make sense some places, however. dug In reply to Re: Get a hash object from a database with DBI for use with HTML::Template
by dug
|
|