  | | | varchar field > 65K | varchar field > 65K 2007-10-11 - By John Gehring
Back I am adding records to my MySQL database that contains a column of type 'mediumtext' (call it ColA). The amount of data is roughly 75K bytes. If I use the SELECT ... INTO OUTFILE ... statement to get the data, I successfully get all the data of the record. However, if I use a select statement within an embedded application (using mysql++), the data from ColA is truncated at 65K bytes. I see quite a bit of documentation for the mysql embedded library related to binding data for result sets. But I don't see anyplace in the mysql++ code that uses that functionality (like mysql_stmt_bind_result()). Am I missing something, or does the mysql++ library have a limit on how large a field of data can be returned from a select statement?
|
|
 |