@creator.co/wapi - v1.8.1
    Preparing search index...

    Type Alias DbBaseConfig

    Defines the configuration options for different types of databases.

    type DbBaseConfig = {
        autoCommit: boolean;
        database: string;
        host: string;
        maxConnections: number;
        password: string;
        port: number;
        username: string;
    }
    Index

    Properties

    autoCommit: boolean

    Flag indicating whether auto-commit is enabled.

    database: string

    The name of the database.

    host: string

    The host of the database.

    maxConnections: number

    The maximum number of connections allowed.

    password: string

    The password for accessing the database.

    port: number

    The port number of the database.

    username: string

    The username for accessing the database.