Represents options for a database.

interface IZDatabaseOptions {
    database?: string;
    timeout?: number;
    url?: string;
}

Properties

database?: string

The name of the database to connect to and modify.

timeout?: number

The timeout value for connections.

url?: string

The database connection string.