@earth-app/collegedb
    Preparing search index...

    Interface BuiltQuery

    A built statement: the parameterized SQL text and its positional bindings.

    interface BuiltQuery {
        bindings: any[];
        sql: string;
    }
    Index
    bindings: any[]

    Positional bindings in the same order as the ? placeholders

    sql: string

    Parameterized SQL text using ? placeholders