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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fixed the issue where error messages from the server are not returned if they are too long (more than 492 bytes long). Now they are truncated so that the total length of the message and prefix (it has the form [ss-1.1.6][8.5.24]) is not larger than 512.
Added ECHO query type so that it's possible to execute queries of the form ECHO my_stored_procedure(...)
Added a boolean DSN option REWRITE_CALL_SP. If this parameter is set to true, then queries of the form CALL my_stored_procedure(...) are sent to the database as ECHO my_stored_procedure(...). This is needed for the users of third-party tools that want to get the result of the stored procedure, while the third-party tool is running it with CALL. If REWRITE_CALL_SP option is set for a DSN, the user must have RETURN clause in all their SPs that are invoked using this DSN.