Jdbc

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

Represents JDBC connection details.

Constructors

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

Properties

Link copied to clipboard
val database: String? = null

The database name.

Link copied to clipboard
val host: String? = null

The host name.

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

Additional parameters for the JDBC connection.

Link copied to clipboard
val port: Int? = null

The port number.

Link copied to clipboard
val schema: String? = null

The database schema.

Link copied to clipboard
val subprotocol: String? = null

The JDBC subprotocol.

Link copied to clipboard
val table: String? = null

The table name.

Link copied to clipboard
val url: String? = null

The JDBC URL.