Modifier and Type | Method and Description |
---|---|
SQLRowStream |
SQLRowStream.endHandler(io.vertx.core.Handler<Void> endHandler) |
SQLRowStream |
SQLRowStream.exceptionHandler(io.vertx.core.Handler<Throwable> handler) |
SQLRowStream |
SQLRowStream.handler(io.vertx.core.Handler<io.vertx.core.json.JsonArray> handler) |
SQLRowStream |
SQLRowStream.pause() |
SQLRowStream |
SQLRowStream.resultSetClosedHandler(io.vertx.core.Handler<Void> handler)
Event handler when a resultset is closed.
|
SQLRowStream |
SQLRowStream.resume() |
Modifier and Type | Method and Description |
---|---|
default SQLClient |
SQLClient.queryStream(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SQLRowStream>> handler)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
SQLConnection |
SQLConnection.queryStream(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SQLRowStream>> handler)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
SQLOperations |
SQLOperations.queryStream(String sql,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SQLRowStream>> handler)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
default SQLClient |
SQLClient.queryStreamWithParams(String sql,
io.vertx.core.json.JsonArray params,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SQLRowStream>> handler)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
SQLConnection |
SQLConnection.queryStreamWithParams(String sql,
io.vertx.core.json.JsonArray params,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SQLRowStream>> handler)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
SQLOperations |
SQLOperations.queryStreamWithParams(String sql,
io.vertx.core.json.JsonArray params,
io.vertx.core.Handler<io.vertx.core.AsyncResult<SQLRowStream>> handler)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
Copyright © 2019 Eclipse. All rights reserved.