Type Alias SqliteWrapper

SqliteWrapper: {
    close: () => Promise<Error | null>;
    exec: (sql: string, params?: Paramaters) => Promise<void>;
    getInstance: () => SQLiteDatabase;
    query: <ResponseType>(
        sql: string,
        params?: Paramaters,
    ) => Promise<ResponseType[]>;
}

A wrapper around sqlite for clean up use.

Type declaration

  • Readonlyclose: () => Promise<Error | null>

    Cancel the current operation if one exists and shut down the database.

  • Readonlyexec: (sql: string, params?: Paramaters) => Promise<void>

    Execute a query on the database, does not return any data.

  • ReadonlygetInstance: () => SQLiteDatabase

    Gets the instance of sqlite3 being used.

  • Readonlyquery: <ResponseType>(sql: string, params?: Paramaters) => Promise<ResponseType[]>

    Execute a query on the database, returns all fetched data.