We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have an SQL procedure in MariaDB called bookUPDATE such as this:
bookUPDATE
BEGIN UPDATE book SET book.Title= v_Title, book.ReleaseDate = v_ReleaseDate, book.Description = v_Description, WHERE book.ID = v_ID; END
I have an SQL builder for this procedure which creates a string:
q := "CALL bookUPDATE(?, ?, ?, ?); CALL bookUPDATE(?, ?, ?, ?);"
When I do the sqlparser.Parse(q) I get an error syntax error at position 5 near 'call'.
sqlparser.Parse(q)
syntax error at position 5 near 'call'
How am I supposed to Parse calling the procedure?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have an SQL procedure in MariaDB called
bookUPDATE
such as this:I have an SQL builder for this procedure which creates a string:
When I do the
sqlparser.Parse(q)
I get an errorsyntax error at position 5 near 'call'
.How am I supposed to Parse calling the procedure?
The text was updated successfully, but these errors were encountered: