interface PostgreSQLClient : AsyncSQLClient
Represents an PostgreSQL client
Author
Joern Bernhardt.
Author
Tim Fox
static val DEFAULT_CHARSET: String
The default charset. |
|
static val DEFAULT_CONNECT_TIMEOUT: Long
The default timeout for connect. |
|
static val DEFAULT_DATABASE: String
The default database name. |
|
static val DEFAULT_DS_NAME: String
The default name used for the PostGreSQL pool. |
|
static val DEFAULT_HOST: String
The default host. |
|
static val DEFAULT_PASSWORD: String
The default user password. |
|
static val DEFAULT_PORT: Int
The default port. |
|
static val DEFAULT_TEST_TIMEOUT: Long
The default timeout for tests. |
|
static val DEFAULT_USER: String
The default database user. |
open static fun createNonShared(: Vertx, : JsonObject): AsyncSQLClient
Create a PostgreSQL client which maintains its own pool. |
|
open static fun createShared(: Vertx, : JsonObject, : String): AsyncSQLClient
Create a PostgreSQL client which shares its pool with any other MySQL clients created with the same pool name. open static fun createShared(: Vertx, : JsonObject): AsyncSQLClient
Like |