smart-sqlite3-filter
    Preparing search index...

    Interface BuiltWhere

    interface BuiltWhere {
        values: Record<string, number | string>;
        where: string;
    }
    Index

    Properties

    Properties

    values: Record<string, number | string>

    Named parameters to bind. Always pass the whole object to the statement: stmt.all({ ...values, ...yourOwnParams }).

    where: string

    The WHERE condition, without the WHERE keyword, ready to be interpolated into a larger statement. Empty when the query string carries no usable criteria — callers should then omit their WHERE clause (or use '1 = 1').