Type Alias Database
Database: {
close: () => Promise<void>;
create: <T extends TableEntry>(
name: string,
columns: TableColumns<T>,
primary_key: keyof T,
) => Promise<Table<T>>;
drop: (table: string) => Promise<void>;
getSQLiteInstance: () => SQLiteDatabase;
has: (table: string) => Promise<boolean>;
table: <T extends TableEntry>(name: string) => Table<T>;
tables: (filter?: FilterFunction<string>) => Promise<Table<TableEntry>[]>;
toString: () => Promise<string>;
}
close: () => Promise<void>;
create: <T extends TableEntry>(
name: string,
columns: TableColumns<T>,
primary_key: keyof T,
) => Promise<Table<T>>;
drop: (table: string) => Promise<void>;
getSQLiteInstance: () => SQLiteDatabase;
has: (table: string) => Promise<boolean>;
table: <T extends TableEntry>(name: string) => Table<T>;
tables: (filter?: FilterFunction<string>) => Promise<Table<TableEntry>[]>;
toString: () => Promise<string>;
}
Type declaration
Readonly
close: () => Promise<void>Readonly
create: <T extends TableEntry>(
name: string,
columns: TableColumns<T>,
primary_key: keyof T,
) => Promise<Table<T>>Creates a new table on the Database.
Readonly
drop: (table: string) => Promise<void>Drops a table from the Database.
Readonly
getSQLiteInstance: () => SQLiteDatabaseGets the SQLite3 instance. Mostly used for testing.
Readonly
has: (table: string) => Promise<boolean>Checks if a table exists on the Database.
Readonly
table: <T extends TableEntry>(name: string) => Table<T>Gets a refrence to a Table.
Readonly
tables: (filter?: FilterFunction<string>) => Promise<Table<TableEntry>[]>Gets references to all the tables of the database.
Readonly
toString: () => Promise<string>Gets a string representation of the database.
Close the Database connection.