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
figure out limits for a "standard" COM_STMT_EXECUTE parameters maximum size
add a field to statement object to track bound parameters.
update connection.execute() to check the size of supplied parameters array, for all parameters that are too big for a "regular" com_stmt_execute send them using COM_STMT_SEND_LONG_DATA packets and mark as bound, then send com_execute as per usual except using NULL values for long parameters sent earlier
potentially add public api form manual stmt = await connection.prepare() / stmt.sendLongData(paramId, value) / stmt.execute(params)
( maybe add a field to statement object to track bound parameters. actually is not needed )
Will this driver trigger the seng long data protocol. If possible, could you provide an example code to take a look at?
The text was updated successfully, but these errors were encountered: