Interface DBConfig

interface DBConfig {
    name: string;
    auth?: DBConfigAuth;
    max?: number;
    initial_script?: string;
}

Properties

name: string

The name of the database, used for logging

The authentication details for the database

max?: number

The maximum number of connections to the database

initial_script?: string

The initial script to run when connecting to the database