PostgresRemote

class PostgresRemote(val hostname: String, val port: Int, val database: String, val username: String, val password: String) : Remote

Constructors

Link copied to clipboard
constructor(hostname: String, port: Int, database: String, username: String, password: String)

Types

Link copied to clipboard
@Serializable
@SerialName(value = "!Postgres")
data class Factory(val hostname: String, val port: Int = 5432, val database: String, val username: String, val password: String) : Remote.Factory<PostgresRemote>
Link copied to clipboard

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val port: Int
Link copied to clipboard

Functions

Link copied to clipboard
open override fun close()