interface MySQLClient : AsyncSQLClient
Represents an asynchronous MySQL 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. |
|
static val DEFAULT_HOST: String
The default host. |
|
static val DEFAULT_PASSWORD: String
The default database password. |
|
static val DEFAULT_POOL_NAME: String
The default name used for the MySQL pool. |
|
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 MySQL client which maintains its own pool. |
|
open static fun createShared(: Vertx, : JsonObject, : String): AsyncSQLClient
Create a MySQL client which shares its data source with any other MySQL clients created with the same data source name open static fun createShared(: Vertx, : JsonObject): AsyncSQLClient
Like |