lidavidm commented on issue #1531:
URL: https://github.com/apache/arrow-adbc/issues/1531#issuecomment-1938938606

   No dice, unfortunately:
   
   ```
   PS C:\Windows\system32> python
   Python 3.11.8 (tags/v3.11.8:db85d51, Feb  6 2024, 22:03:32) [MSC v.1937 64 
bit (AMD64)] on win32
   Type "help", "copyright", "credits" or "license" for more information.
   >>> import adbc_driver_postgresql.dbapi
   >>> uri = "postgresql://postgres:[email protected]:5432/postgres"
   >>> adbc_driver_postgresql.dbapi.connect(uri)
   <adbc_driver_manager.dbapi.Connection object at 0x0000029912EDED50>
   >>> conn = _
   >>> conn.close()
   >>> with adbc_driver_postgresql.dbapi.connect(uri) as conn:
   ...  with conn.cursor() as cur:
   ...   cur.execute("SELECT 1")
   ...   print(cur.fetchall())
   ...
   [(1,)]
   >>> exit()
   PS C:\Windows\system32> pip freeze
   adbc-driver-manager==0.9.0
   adbc-driver-postgresql==0.9.0
   numpy==1.26.4
   pandas==2.2.0
   pyarrow==15.0.0
   python-dateutil==2.8.2
   pytz==2024.1
   six==1.16.0
   tzdata==2024.1
   PS C:\Windows\system32> [Environment]::OSVersion
   
   Platform ServicePack Version      VersionString
   -------- ----------- -------      -------------
    Win32NT             10.0.18362.0 Microsoft Windows NT 10.0.18362.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: [email protected]

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

Reply via email to