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 faced with an error after updating the client from 1.1.0 to 1.2.1
`connDB, _ := sql.Open("vertica", myDBConnection) query := "SELECT * FROM sometable " + "WHERE ( field1 = ? or ? = '' ) AND field2 > ?" ctx := context.Background() rows, err := connDB.QueryContext(ctx, query, "arg1", "arg1", 100) if err != nil { log.Fatal(err) } defer rows.Close()`
After ? = '' it stops count placeholders and returns an error sql: expected 2 arguments, got 3
? = ''
sql: expected 2 arguments, got 3
On 1.1.0 it works fine
The text was updated successfully, but these errors were encountered:
405d22d
No branches or pull requests
I faced with an error after updating the client from 1.1.0 to 1.2.1
After
? = ''
it stops count placeholders and returns an errorsql: expected 2 arguments, got 3
On 1.1.0 it works fine
The text was updated successfully, but these errors were encountered: