in reply to WIN32::ODBC - text field String data, right truncation

you may need to :
select maxsize = max(datalen(YourTextColumn)) from YourTableName
and then call
# # set $size to maxsize from sql call above... # $db->SetMaxBufSize($size);
-hth