MysqlDepot

data class MysqlDepot(val subprotocol: String? = null, val host: String? = null, val port: Int? = null, val params: Map<String, Any>? = null)

Represents a MySQL depot configuration.

Constructors

Link copied to clipboard
constructor(subprotocol: String? = null, host: String? = null, port: Int? = null, params: Map<String, Any>? = null)

Properties

Link copied to clipboard
val host: String? = null

The host for the MySQL connection. Default is null.

Link copied to clipboard
val params: Map<String, Any>? = null

Additional parameters for the MySQL depot. Default is null.

Link copied to clipboard
val port: Int? = null

The port for the MySQL connection. Default is null.

Link copied to clipboard
val subprotocol: String? = null

The subprotocol for the MySQL connection. Default is null.