@decafcode/sqlite
    Preparing search index...

    Type Alias BindParams

    BindParams: SqlValue[] | { [key: string]: SqlValue }

    A collection of bind parameters suitable for passing to a prepared statement. This can either be an array of SqlValues or an object whose values all conform to the SqlValue definition.

    If an array is supplied then its elements will be bound to the statement's positional parameters (or to named parameters in the order in which they occur). If an object is supplied then its keys will be bound to the query's named parameters, and an error will be raised if there are any keys that do not correspond to a named parameter in the query.

    Please note that the symbol at the start of a bind parameter is considered to be part of the parameter's name.