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

    Interface BuildInsertOptions

    Options accepted by buildInsert.

    interface BuildInsertOptions {
        orIgnore?: boolean;
        orReplace?: boolean;
        returning?: string | boolean | string[];
    }
    Index
    orIgnore?: boolean

    Emit INSERT OR IGNORE (SQLite) instead of a plain INSERT

    orReplace?: boolean

    Emit INSERT OR REPLACE (SQLite) instead of a plain INSERT

    returning?: string | boolean | string[]

    Append a RETURNING clause; true returns *, or pass explicit columns