-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Binding Vec to SELECT IN with SQLite #656
New issue
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
Comments
I'm stuck on this too. For the life of me cannot find a way to query do an IN query. |
I am able to pass a |
Thanks for the suggestion, but that sounds even more hacky than what I'm currently doing, and I'm still not sure this would be using a prepared statement :/ |
plus one here I'm trying to send multi row update in Postgres with using something like:
I'm getting
Tried to scan the source code, didn't find any examples of binding a list (vec) in a SQL statement like this. UPD: with Postgres you are able to
|
We have an open proposal to make this work, I'm closing this as duplicate: #875 |
Would it possible to support binding Vecs to SELECT IN queries in SQLite ? Right now I'm formatting the query on te fly but it would be nice to use a prepared statement for these queries as well.
The text was updated successfully, but these errors were encountered: