Read up on the LongReadLen attribute.
What driver are you using?
What's the value of the LongTruncOk attribute?
Tim.
On Thu, Mar 21, 2002 at 07:22:37PM -0700, Troy Sniff wrote:
> I have an access db with a table that contains a few memo fields.
>
> Whenever any of those memo fields have more than 81 characters, the
> fetchrow_hashref does nothing.
>
> Basically the code looks like this:
>
> while ( $ref = $sth->fetchrow_hashref() ) {
> print "Notes: $ref->{notes}";
> }
>
> If the value for 'notes' is 82 characters or more, I get nothing from
> the print statement.
>
> If I decrease the size to 81, the print statements works great.
>
> Anyone seen this before?
>
> Troy
>
>