Core - v1.0.0
    Preparing search index...

    Interface SqlCredentials

    Everything needed to open a connection to an external SQL database.

    Bayu Dwiyan Satria

    1.0.0

    1.0.0

    interface SqlCredentials {
        database: string;
        host: string;
        password: string;
        port: number;
        user: string;
    }
    Index
    database: string

    Name of the database to connect to.

    host: string

    Hostname to connect to.

    password: string

    Password.

    port: number

    Port paired with SqlCredentials.host.

    user: string

    Database user.