Skip to content

Oracle

Specific parameters to establish Oracle Database connections.


General Information:

Type ID Module Category
12 database database

OracleConnectionParams

Parameters:

No parameters.

Input Parameters:

Field Type Required Description Default value Examples
host str Host name or IP address of the database server ```` 200.00.25.547, devdb.com
port int Database server port 5432 5432
username str Username for authentication ```` user
password str Password for authentication ```` password
database str Name of the database to connect ```` mydb
use_ssl bool Whether to use SSL for the connection False False

Example:

{
  "host": "localhost",
  "port": 1521,
  "username": "admin",
  "password": "password",
  "database": "ORCL",
  "use_ssl": false
}

Notes:

Oracle Database is a relational database management system