@exasol/exasol-driver-ts
    Preparing search index...

    Interface Config

    interface Config {
        accessToken?: string;
        autocommit: boolean;
        clientName: string;
        clientVersion: string;
        compression: boolean;
        encryption?: boolean;
        fetchSize: number;
        host: string;
        onClose?: () => void;
        onError?: () => void;
        password?: string;
        port: number;
        refreshToken?: string;
        resultSetMaxRows?: number;
        schema?: string;
        url?: string;
        user?: string;
    }
    Index
    accessToken?: string
    autocommit: boolean
    clientName: string
    clientVersion: string
    compression: boolean
    encryption?: boolean

    Disable encryption.

    Exasol only supports encrypted connections. Setting this to false has no effect.

    fetchSize: number

    Number of bytes to fetch per request. Default: 1024 * 1024 (1 MB)

    host: string

    Host name or IP address

    onClose?: () => void
    onError?: () => void
    password?: string
    port: number

    Exasol port, e.g. 8563

    refreshToken?: string
    resultSetMaxRows?: number

    Limit max rows fetched

    schema?: string
    url?: string

    Websocket URL. Default: wss://<host>:<port>. This allows overriding the default URL if necessary.

    user?: string