Skip to content

Latest commit

 

History

History
43 lines (35 loc) · 1.38 KB

oracle_sql.md

File metadata and controls

43 lines (35 loc) · 1.38 KB

OracleSQL connector

⚠️ Using this connector requires the installation of Oracle Instant client library. The easiest way to install the package is to follow the different steps presents on the Oracle Github installation instructions. Alternatively, you can refer to the Oracle website installation instructions as it probably won't be available in your current server package manager.

Data provider configuration

  • type: "OracleSQL"
  • name: str, required
  • dsn: str following the DSN pattern, required. The host, port and service name part of the dsn are required. For example: localhost:80/service
  • user: str
  • password: str
  • encoding: str
DATA_PROVIDERS: [
  type:    'OracleSQL'
  name:    '<name>'
  dsn:    <dsn>
  user:    '<user>'
  password:    '<password>'
  encoding:    '<encoding>'
,
  ...
]

Data source configuration

  • domain: str, required
  • name: str, required
  • query: str, required
DATA_SOURCES: [
  domain:    '<domain>'
  name:    '<name>'
  query:    '<query>'
,
  ...
]