Hi, All:
I need a way to store a large text string (approx 500 char) from a MySQL query into a Perl Variable. Currently, I am using the following method:
$pointer = $sth->fetchrow_hashref;
$glossDef = $pointer->{'glossDef'};
The problem is that glossDef is larger than 255 char, and it is being truncated.
Any help would be MUCH appreciated.
Rick
I need a way to store a large text string (approx 500 char) from a MySQL query into a Perl Variable. Currently, I am using the following method:
$pointer = $sth->fetchrow_hashref;
$glossDef = $pointer->{'glossDef'};
The problem is that glossDef is larger than 255 char, and it is being truncated.
Any help would be MUCH appreciated.
Rick