Juergen Zimmermann
Juergen Zimmermann

Reputation: 2222

What is the recommended async Oracle driver for SQLAlchemy 2.0?

We are developing an asynchronous Python-based server using SQLAlchemy 2. So far, asynchronous access to PostgreSQL, MySQL and SQLite work fine. However, we cannot find an async driver for Oracle.

Upvotes: 0

Views: 961

Answers (1)

Christopher Jones
Christopher Jones

Reputation: 10536

The async driver for Oracle Database is under development. You can follow discussion at https://github.com/oracle/python-oracledb/issues/6

Upvotes: 1

Related Questions