- 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.