- call(String, Handler<AsyncResult<ResultSet>>) - Method in interface io.vertx.ext.sql.SQLClient
-
Calls the given SQL PROCEDURE
which returns the result from the procedure.
- call(String, Handler<AsyncResult<ResultSet>>) - Method in interface io.vertx.ext.sql.SQLConnection
-
Calls the given SQL PROCEDURE
which returns the result from the procedure.
- call(String, Handler<AsyncResult<ResultSet>>) - Method in interface io.vertx.ext.sql.SQLOperations
-
Calls the given SQL PROCEDURE
which returns the result from the procedure.
- callWithParams(String, JsonArray, JsonArray, Handler<AsyncResult<ResultSet>>) - Method in interface io.vertx.ext.sql.SQLClient
-
Calls the given SQL PROCEDURE
which returns the result from the procedure.
- callWithParams(String, JsonArray, JsonArray, Handler<AsyncResult<ResultSet>>) - Method in interface io.vertx.ext.sql.SQLConnection
-
Calls the given SQL PROCEDURE
which returns the result from the procedure.
- callWithParams(String, JsonArray, JsonArray, Handler<AsyncResult<ResultSet>>) - Method in interface io.vertx.ext.sql.SQLOperations
-
Calls the given SQL PROCEDURE
which returns the result from the procedure.
- close(DataSource) - Method in interface io.vertx.ext.jdbc.spi.DataSourceProvider
-
- close(Handler<AsyncResult<Void>>) - Method in interface io.vertx.ext.sql.SQLClient
-
Close the client and release all resources.
- close() - Method in interface io.vertx.ext.sql.SQLClient
-
Close the client
- close(Handler<AsyncResult<Void>>) - Method in interface io.vertx.ext.sql.SQLConnection
-
Closes the connection.
- close() - Method in interface io.vertx.ext.sql.SQLConnection
-
Closes the connection.
- close() - Method in interface io.vertx.ext.sql.SQLRowStream
-
Closes the stream/underlying cursor(s).
- close(Handler<AsyncResult<Void>>) - Method in interface io.vertx.ext.sql.SQLRowStream
-
Closes the stream/underlying cursor(s).
- column(String) - Method in interface io.vertx.ext.sql.SQLRowStream
-
Will convert the column name to the json array index.
- columns() - Method in interface io.vertx.ext.sql.SQLRowStream
-
Returns all column names available in the underlying resultset.
- commit(Handler<AsyncResult<Void>>) - Method in interface io.vertx.ext.sql.SQLConnection
-
Commits all changes made since the previous commit/rollback.
- create(Vertx, JsonObject) - Static method in interface io.vertx.ext.jdbc.JDBCClient
-
Create a JDBC client which maintains its own data source.
- create(Vertx, DataSource) - Static method in interface io.vertx.ext.jdbc.JDBCClient
-
Create a client using a pre-existing data source
- createShared(Vertx, JsonObject, String) - Static method in interface io.vertx.ext.jdbc.JDBCClient
-
Create a JDBC client which shares its data source with any other JDBC clients created with the same
data source name
- createShared(Vertx, JsonObject) - Static method in interface io.vertx.ext.jdbc.JDBCClient
-
- query(String, Handler<AsyncResult<ResultSet>>) - Method in interface io.vertx.ext.sql.SQLClient
-
Execute a single SQL statement, this method acquires a connection from the the pool and executes the SQL
statement and returns it back after the execution.
- query(String, Handler<AsyncResult<ResultSet>>) - Method in interface io.vertx.ext.sql.SQLConnection
-
Executes the given SQL SELECT
statement which returns the results of the query.
- query(String, Handler<AsyncResult<ResultSet>>) - Method in interface io.vertx.ext.sql.SQLOperations
-
Executes the given SQL SELECT
statement which returns the results of the query.
- querySingle(String, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.ext.sql.SQLOperations
-
Execute a one shot SQL statement that returns a single SQL row.
- querySingleWithParams(String, JsonArray, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.ext.sql.SQLOperations
-
Execute a one shot SQL statement with arguments that returns a single SQL row.
- queryStream(String, Handler<AsyncResult<SQLRowStream>>) - Method in interface io.vertx.ext.sql.SQLClient
-
Executes the given SQL SELECT
statement which returns the results of the query as a read stream.
- queryStream(String, Handler<AsyncResult<SQLRowStream>>) - Method in interface io.vertx.ext.sql.SQLConnection
-
Executes the given SQL SELECT
statement which returns the results of the query as a read stream.
- queryStream(String, Handler<AsyncResult<SQLRowStream>>) - Method in interface io.vertx.ext.sql.SQLOperations
-
Executes the given SQL SELECT
statement which returns the results of the query as a read stream.
- queryStreamWithParams(String, JsonArray, Handler<AsyncResult<SQLRowStream>>) - Method in interface io.vertx.ext.sql.SQLClient
-
Executes the given SQL SELECT
statement which returns the results of the query as a read stream.
- queryStreamWithParams(String, JsonArray, Handler<AsyncResult<SQLRowStream>>) - Method in interface io.vertx.ext.sql.SQLConnection
-
Executes the given SQL SELECT
statement which returns the results of the query as a read stream.
- queryStreamWithParams(String, JsonArray, Handler<AsyncResult<SQLRowStream>>) - Method in interface io.vertx.ext.sql.SQLOperations
-
Executes the given SQL SELECT
statement which returns the results of the query as a read stream.
- queryWithParams(String, JsonArray, Handler<AsyncResult<ResultSet>>) - Method in interface io.vertx.ext.sql.SQLClient
-
Execute a single SQL prepared statement, this method acquires a connection from the the pool and executes the SQL
prepared statement and returns it back after the execution.
- queryWithParams(String, JsonArray, Handler<AsyncResult<ResultSet>>) - Method in interface io.vertx.ext.sql.SQLConnection
-
Executes the given SQL SELECT
prepared statement which returns the results of the query.
- queryWithParams(String, JsonArray, Handler<AsyncResult<ResultSet>>) - Method in interface io.vertx.ext.sql.SQLOperations
-
Executes the given SQL SELECT
prepared statement which returns the results of the query.