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
