JdbcDepot

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

Represents a JDBC depot configuration.

Constructors

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

Properties

Link copied to clipboard
val database: String? = null

The database name for the JDBC connection. Default is null.

Link copied to clipboard
val host: String? = null

The host for the JDBC connection. Default is null.

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

Additional parameters for the JDBC depot. Default is null.

Link copied to clipboard
val port: Int? = null

The port for the JDBC connection. Default is null.

Link copied to clipboard
val subprotocol: String? = null

The subprotocol for the JDBC connection. Default is null.