Interface SQLitePrepareOptions

Options object argument for SQLiteAPI.statements

interface SQLitePrepareOptions {
    flags?: number;
    unscoped?: boolean;
}

Properties

Properties

flags?: number

SQLITE_PREPARE_* flags

unscoped?: boolean

Statement handles prepared and yielded by SQLiteAPI.statements are normally valid only within the scope of an iteration. Set unscoped to true to give iterated statements an arbitrary lifetime.

Generated using TypeDoc