Skip to main content
GuideServerConfigure and deploy Tabsdata servers on your machine.TutorialsConfigure data integration workflows within a running Tabsdata server.Advanced TutorialsBuild end-to-end workflows between two specific systems.API ReferenceCLI ReferenceRelease Notes
Version: 2.0.0

OracleSrcConn

class
class OracleSrcConn(
uri: UriSpec,
credentials: CredentialsSpec,
entity_whitelist: EntityWhitelistSpec | None = None,
conn_cfg: CfgSpec | None = None,
)

Bases: Conn

Categories: source

Oracle connection used by OracleSrc.

Registered on a collection; the runtime resolves it and hands it to the plugin at run time.

Parameters

parameter

SQLAlchemy-style Oracle URI (oracle+oracledb://host:port/service). Accepts a plain string or a Secret.

parameter

UserPassword -- user + password spliced into the URI by the engine factory.

parameter
entity_whitelistEntityWhitelistSpec | None (list[str] | None)

Optional list of regex patterns narrowing which tables this connection contributes to discovery. None (the default) means no filtering.

parameter
conn_cfgCfgSpec | None (dict | None)

Optional driver-side config forwarded to SQLAlchemy as connect_args.