QuestDB JavaScript Client - v5.0.0
    Preparing search index...

    Interface QwpEgressQueryOptions

    interface QwpEgressQueryOptions {
        autoCredit?: boolean;
        bindCount?: number;
        bindPayload?: Uint8Array;
        binds?: QwpBindSetter;
        initialCredit?: number | bigint;
        resetDictionary?: boolean;
        timeoutMs?: number;
    }
    Index

    Properties

    autoCredit?: boolean

    Replenishes positive initial credit by each RESULT_BATCH wire size after the async iterator advances past that batch. Defaults to true.

    bindCount?: number

    Advanced escape hatch for an already encoded bind section.

    bindPayload?: Uint8Array

    Advanced escape hatch for an already encoded bind section.

    Sets typed positional parameters; index 0 maps to SQL placeholder $1.

    initialCredit?: number | bigint

    Overrides session send-ahead credit. Zero explicitly disables flow control.

    resetDictionary?: boolean

    Ask a capable server to reset its connection-scoped symbol dictionary. Silently omitted when the server lacks QUERY_FLAGS for rolling upgrades.

    timeoutMs?: number

    Per-query deadline overriding the session default. Zero disables it. Capped at 2,147,483,647ms (the host timer ceiling); a larger value throws a RangeError.