AskSQL API Reference (core v0.10.0)
    Preparing search index...

    Interface ConnectionSpec

    interface ConnectionSpec {
        database?: string;
        engine: DynamicEngine;
        host?: string;
        id?: string;
        name: string;
        password?: string;
        port?: number;
        ssl?: "disable" | "trust" | "verify";
        uri?: string;
        user?: string;
    }
    Index
    database?: string

    Database name; for sqlite/duckdb this is the file path instead.

    host?: string
    id?: string
    name: string
    password?: string
    port?: number
    ssl?: "disable" | "trust" | "verify"
    uri?: string

    MongoDB only: a mongodb:// or mongodb+srv:// connection string.

    user?: string