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

    Interface MysqlConnectorConfig

    interface MysqlConnectorConfig {
        connectionLimit?: number;
        database: string;
        host?: string;
        id: string;
        name: string;
        password?: string;
        port?: number;
        sampleColumnValues?: boolean;
        ssl?: Record<string, unknown>;
        uri?: string;
        user?: string;
    }
    Index
    connectionLimit?: number
    database: string
    host?: string
    id: string
    name: string
    password?: string
    port?: number
    sampleColumnValues?: boolean

    Opt-in: sample distinct values from short non-enum text columns, so the model sees the real codes they hold.

    ssl?: Record<string, unknown>
    uri?: string
    user?: string