@quack-protocol/sdk - v0.1.0
    Preparing search index...

    Interface PrepareRequestMessage

    Request to prepare and execute SQL.

    interface PrepareRequestMessage {
        clientQueryId?: bigint;
        connectionId?: string;
        sql: string;
        type: PREPARE_REQUEST;
    }

    Hierarchy (View Summary)

    Index

    Properties

    clientQueryId?: bigint

    Client-assigned query/request id.

    connectionId?: string

    Server-assigned connection id for connection-scoped messages.

    sql: string

    SQL text to execute.

    Concrete message type id.