zeroshade commented on issue #3135:
URL: https://github.com/apache/arrow-adbc/issues/3135#issuecomment-3063981580

   that's because the `cursor` wasn't in your contextmgr
   
   you would do:
   
   ```python
   with snowflake_adbc.connect(db_kwargs=DB_KWARGS_2) as conn, cursor as 
conn.cursor():
       cursor.execute("SELECT 1;")
       result = cursor.fetch_arrow_table()
       print(result)
   
   ```


-- 
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

Reply via email to