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
{{ message }}
This repository has been archived by the owner on Feb 22, 2020. It is now read-only.
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)
The text was updated successfully, but these errors were encountered:
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)`
—
Reply to this email directly or view it on GitHubhttps://github.com//issues/34.
This figure has related to query size too big problem? If so, can this figure be able to set when build the connection? In some environment, large query is needed and query size is controlled by server-side.
This issue still exists, can you please provide a solution that allows users to run queries on sets larger than your buffer size without manually setting limits in SQL
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.The text was updated successfully, but these errors were encountered: