ConnectionOptions
public enum ConnectionOptions
Configuration options to be passed to PostgreSQL server.
-
The command-line options to be sent to the server.
Declaration
Swift
case options(String)
-
The database name.
Declaration
Swift
case databaseName(String)
-
The user name.
Declaration
Swift
case userName(String)
-
The user password.
Declaration
Swift
case password(String)
-
The maximum wait for connection in seconds. Zero or not specified means wait indefinitely.
Declaration
Swift
case connectionTimeout(Int)