Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Split from #397 and #397 (comment).
MySqlCommand.Prepare() should support CommandType.StoredProcedure; it currently fails.
MySqlCommand.Prepare()
CommandType.StoredProcedure
Note that prepared stored procedures can natively return output parameters (without executing a separate SELECT statement); this will need to be supported. See #231 (comment) and example code here: https://dev.mysql.com/doc/refman/5.7/en/c-api-prepared-call-statements.html
SELECT
The text was updated successfully, but these errors were encountered:
Implement Prepare for stored procedures. Fixes #742
8e7fc74
c786e0b
Added in 0.68.0.
Sorry, something went wrong.
No branches or pull requests
Split from #397 and #397 (comment).
MySqlCommand.Prepare()
should supportCommandType.StoredProcedure
; it currently fails.Note that prepared stored procedures can natively return output parameters (without executing a separateSELECT
statement); this will need to be supported. See #231 (comment) and example code here: https://dev.mysql.com/doc/refman/5.7/en/c-api-prepared-call-statements.htmlThe text was updated successfully, but these errors were encountered: