You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a table which has a blob field, and when i want to query all data from it, i got "Socket receive buffer full".
And when i increase the MYSQL_PACKET_SIZE from (1024 * 1024 * 16) to (1024 * 1024 * 32), it's disappeared.
alldata = list(executeSQL('select * from table_with_big_blob_field', ()).rows)
I have a table which has a blob field, and when i want to query all data from it, i got "Socket receive buffer full".
And when i increase the
MYSQL_PACKET_SIZEfrom(1024 * 1024 * 16)to(1024 * 1024 * 32), it's disappeared.