Core - v1.0.0
    Preparing search index...

    Interface SqlStatement

    One statement in a batch, with its bind values.

    Bayu Dwiyan Satria

    1.0.0

    1.0.0

    interface SqlStatement {
        sql: string;
        values?: unknown[];
    }
    Index
    sql: string

    SQL statement, using ? placeholders for bind values.

    values?: unknown[]

    Values bound to the placeholders, in order.