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
found a bug in parameter binding:
this works fine
rset, err := session.PrepAndQry("select :1 as \"p1\", :2 as \"p2\", :1 as \"p1-again\" from dual ", "v-1" , "v-2")
but this:
rset, err := session.PrepAndQry("select :1 as \"p1\", :1 as \"p1-again\", :2 as \"p2\" from dual ", "v-1" , "v-2")
returns a " ORA-01008: not all variables bound" error
The text was updated successfully, but these errors were encountered:
Strange. Both should fail, as binding by position requires as many arguments, as many :number in the query.
Sorry, something went wrong.
No branches or pull requests
found a bug in parameter binding:
this works fine
but this:
returns a " ORA-01008: not all variables bound" error
The text was updated successfully, but these errors were encountered: