maxfirman commented on issue #1559:
URL: https://github.com/apache/arrow-adbc/issues/1559#issuecomment-2009647520

   I can confirm that the following now works against Dremio 24.3.4:
   ```python
   with connect(
           uri="grpc+tls://<dremio-host>:32010",
           db_kwargs={
               "username": "<username>",
               "password": "<password>",
           },
   ) as connection:
       with connection.cursor() as cursor:
           cursor.execute("select 1")
           result = cursor.fetchall()
           print(result)
   ```
   
   Prints:
   ```
   [(1,)]
   ```
   


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to