in reply to Cannot retrieve more than 80 chars using DBI:ODBC
If you have a handle to a database connection called $dbh, you should be able to do:
I would do this before I issued the $dbh->prepare() with the embedded SQL statement.$dbh->{'LongReadLen'} = 500; # if length of data to be read is 500
BTW, if you search on PerlMonks or Google for the word "LongReadLen", you should find plenty of more complete examples. The PerlMonks search engine isn't working for me at the moment.
Dave Aiello
Chatham Township Data Corporation
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Cannot retrieve more than 80 chars using DBI:ODBC
by kapper (Chaplain) on Sep 13, 2001 at 16:33 UTC |