Interface SQLite3ConnectionSettings

interface SQLite3ConnectionSettings {
    connection_retry_count?: number;
    database: string;
    implicit_apply_schemas?: boolean;
    is_default?: boolean;
    logger?:
        | "console"
        | "color-console"
        | "empty"
        | Logger;
    redis_cache?: RedisCacheSettings;
}

Hierarchy

  • ConnectionSettings
  • AdapterSettingsSQLite3
    • SQLite3ConnectionSettings

Properties

connection_retry_count?: number
database: string
implicit_apply_schemas?: boolean
is_default?: boolean
logger?:
    | "console"
    | "color-console"
    | "empty"
    | Logger
redis_cache?: RedisCacheSettings