in reply to Failure to get a memo field from a database

This has to do with an ODBC default length. Check the data here. This will suggest something like the following be used :
# ... $dbh->{LongReadLen} = 20000; $sth = $dbh->prepare("select long_col from big_table"); $sth->execute; # ...

Thus spake the Master Programmer:
"When you have learned to snatch the error code from the trap frame, it will be time for you to leave."
-- The Tao of Programming

Replies are listed 'Best First'.
Re: Re: Failure to get a memo field from a database
by chaskins (Sexton) on Jul 27, 2001 at 14:26 UTC
    Thanks, that worked great. Chris
Re: Re: Failure to get a memo field from a database
by Anonymous Monk on Jan 06, 2002 at 01:30 UTC
    Wow that worked great. Thanks for the post (about six months later!). =) Andrew