Skip to content

Conversation

@Skada13
Copy link

@Skada13 Skada13 commented Oct 28, 2025

Hey guys, I've just brought oracledb library support. It works the same way as the cx_Oracle.

from uuid import UUID

import cx_Oracle
import oracledb
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

import oracledb as cx_Oracle
is enough to keep changes minimal.
or better to support both

try:
    import cx_Oracle
except ImportError:
    import oracledb as cx_Oracle

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants