AskSQL API Reference (core v0.10.0)
    Preparing search index...

    Interface OracleConnectorConfig

    interface OracleConnectorConfig {
        connectString?: string;
        database?: string;
        host?: string;
        id: string;
        introspectTimeoutMs?: number;
        name: string;
        password?: string;
        port?: number;
        sampleColumnValues?: boolean;
        schema?: string;
        user?: string;
    }
    Index
    connectString?: string

    Easy Connect / TNS connect string, e.g. host:1521/service or a full descriptor. Used verbatim when the discrete host/port/database fields are not supplied.

    database?: string

    Service name, used as the connect-string service when host is given.

    host?: string
    id: string
    introspectTimeoutMs?: number

    Per-call timeout (ms) for the schema read. Defaults to 60s.

    name: string
    password?: string
    port?: number

    Listener port. Defaults to 1521 when discrete fields are used.

    sampleColumnValues?: boolean

    Placeholder for parity with the other connectors; Oracle value sampling is not implemented, so this has no effect.

    schema?: string

    Schema to introspect. Defaults to the session's CURRENT_SCHEMA, which is empty for an account that only holds grants on another owner's tables.

    user?: string