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>;
}

Type declaration

  • Readonlyclose: () => Promise<void>

    Close the Database connection.

  • Readonlycreate: <T extends TableEntry>(
        name: string,
        columns: TableColumns<T>,
        primary_key: keyof T,
    ) => Promise<Table<T>>

    Creates a new table on the Database.

  • Readonlydrop: (table: string) => Promise<void>

    Drops a table from the Database.

  • ReadonlygetSQLiteInstance: () => SQLiteDatabase

    Gets the SQLite3 instance. Mostly used for testing.

  • Readonlyhas: (table: string) => Promise<boolean>

    Checks if a table exists on the Database.

  • Readonlytable: <T extends TableEntry>(name: string) => Table<T>

    Gets a refrence to a Table.

  • Readonlytables: (filter?: FilterFunction<string>) => Promise<Table<TableEntry>[]>

    Gets references to all the tables of the database.

  • ReadonlytoString: () => Promise<string>

    Gets a string representation of the database.