matquant14 opened a new issue, #1144: URL: https://github.com/apache/arrow-adbc/issues/1144
Using the python Snowflake driver, when trying to execute a parameterized SQL query, I am getting a 'NotSupportedError'. Example: ``` sql="""SELECT * FROM customer where id = ?;""" parameter=('ABCD',) cursor = conn.cursor() cursor.execute(sql,parameter) Traceback... NotSupportedError: NOT_IMPLEMENTED: executing non-bulk ingest with bound params not yet implemented ``` I'm using python 3.11.5 and adbc 0.7.0 -- 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: issues-unsubscr...@arrow.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org