Connect Python Applications Without a Wallet (TLS)
You can connect Python applications to your Autonomous Database instance without a wallet. Connecting a Python application without a wallet (TLS) provides
security for authentication and encryption, and security is enforced using client
credentials (by providing a username and password).
The python-oracledb driver's default "Thin mode" connects directly to Oracle
Database. It can optionally use Oracle Client libraries, "Thick mode", for some
additional functionality. The Oracle Client libraries can be from Oracle Instant Client,
the full Oracle Client, or an Oracle Database installation.
Follow these steps to connect your Python application to an Autonomous Database instance without a wallet (TLS):
Enable TLS on Autonomous Database and Obtain Connection String To run a Python application without a wallet, enable the Autonomous Database instance for TLS connections and obtain a connection string to contact the database from the Python application.
Run Python Application Without a Wallet A Python application can connect to your Autonomous Database instance without a wallet (TLS) using the database credentials and a connect descriptor.
Enable TLS on Autonomous Database and Obtain Connection
String
🔗
To run a
Python application without a wallet, enable the Autonomous Database instance for TLS
connections and obtain a connection string to contact the database from the Python
application.
Determine if your Autonomous Database
instance is enabled for TLS connections.
If the instance is
enabled for TLS connections, in the Network area on
the Oracle Cloud
Infrastructure Console the Mutual TLS (mTLS) authentication field
shows: Not Required:
Obtain an Autonomous Database service
connection string to access the database as follows:
On the Oracle Cloud
Infrastructure Console, click Database connection.
Select TLS in the Database Connection dialog box, under Connection Strings, in the TLS Authentication drop-down list.
Note
You must select TLS in the TLS Authentication drop-down to obtain the TLS connection strings before you copy a connection string (when the value is Mutual TLS the connection strings have different values and do not work with TLS connections).
Copy the Connection String for the database service you want to use with your application.