henryharbeck commented on issue #3262: URL: https://github.com/apache/arrow-adbc/issues/3262#issuecomment-3172512164
Thanks for the quick reply @lidavidm, Would you classify this then as a feature request, a "won't fix", or a bug (given the deviation from sqlite in the standard library)? Happy for it to be updated as you see fit. Would just be curious as to whether it will be supported in the future? On a further note, it looks like using a dict binds the keys positionally and ignores values. ```python with adbc_driver_sqlite.dbapi.connect() as conn, conn.cursor() as cursor: cursor.execute("SELECT 'foo' WHERE :n = 1", {1: "blah"}) print(cursor.fetchone()) # ('foo',) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org