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[]>;
}
close: () => Promise<Error | null>;
exec: (sql: string, params?: Paramaters) => Promise<void>;
getInstance: () => SQLiteDatabase;
query: <ResponseType>(
sql: string,
params?: Paramaters,
) => Promise<ResponseType[]>;
}
Type declaration
Readonly
close: () => Promise<Error | null>Cancel the current operation if one exists and shut down the database.
Readonly
exec: (sql: string, params?: Paramaters) => Promise<void>Execute a query on the database, does not return any data.
Readonly
getInstance: () => SQLiteDatabaseGets the instance of sqlite3 being used.
Readonly
query: <ResponseType>(sql: string, params?: Paramaters) => Promise<ResponseType[]>Execute a query on the database, returns all fetched data.
A wrapper around sqlite for clean up use.