Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 821 Bytes

odbcconnector.md

File metadata and controls

44 lines (35 loc) · 821 Bytes

Odbc connector

Import data through ODBC apis

Be aware that this connector needs a specific driver to be installed on the server for the data provider called.

Data provider configuration

  • type: "Odbc"
  • name: str, required
  • connection_string: str, required
  • autocommit: bool, default to False
  • ansi: bool, default to False
  • connect_timeout: int
DATA_PROVIDERS: [
  type:    '<type>'
  name:    '<name>'
  connection_string:    '<connection_string>'
  autocommit:    '<autocommit>'
  ansi:    '<ansi>'
  connect_timeout:    '<connect_timeout>'
,
  ...
]

Data source configuration

  • domain: str, required
  • name: str, required
  • query: str (not empty), required
DATA_SOURCES: [
  domain:    '<domain>'
  name:    '<name>'
  query:    '<query>'
,
  ...
]