Oracle¶
Installation¶
Connection URL¶
Connect to Oracle by passing a connection URL to the Database
constructor:
Connection Parameters¶
Alternatively, connect using the Database.from_oracle()
method with parameters:
PARAMETER | DESCRIPTION |
---|---|
user
|
Username.
TYPE:
|
password
|
Password.
TYPE:
|
host
|
Hostname. Default is 'localhost'.
TYPE:
|
port
|
Port. Default is 1521.
TYPE:
|
database
|
Used as an Oracle service name if provided.
TYPE:
|
sid
|
Unique name of an Oracle Instance, used to construct a DSN if provided.
TYPE:
|
service_name
|
Oracle service name, used to construct a DSN if provided. Only one of database and service_name should be provided.
TYPE:
|
dsn
|
An Oracle Data Source Name. If provided, overrides all other connection arguments except username and password.
TYPE:
|
match_schema
|
Regex pattern to filter schemas. Mutually exclusive with match_tables.
TYPE:
|
match_tables
|
Regex pattern to filter tables. Mutually exclusive with match_schema.
TYPE:
|
**kwargs
|
Additional arguments passed to the DBAPI connection call.
TYPE:
|