0
I need a code Python for connect a DB Oracle
2 Respostas
+ 3
You will need the python-oracledb driver. It is in public domain, you can install with pip.
See the documentation here:
https://oracle.github.io/python-oracledb/
+ 2
You can also check SQLAlchemy which is an ORM (object relational mapper) that lets you interact with the database through annotations (decorators) and OOP concepts, rather than with pure SQL. And it has support for Oracle db.
https://docs.sqlalchemy.org/en/14/dialects/oracle.html