Uses of Interface
org.jdbi.v3.core.result.ResultBearing
-
Packages that use ResultBearing Package Description org.jdbi.v3.core The 'core' package hosts the top level interface into jdbi core.org.jdbi.v3.core.result resultprovides the streaming interface that reads rows from JDBC and drives themapperandcollectorprocesses to produce results.org.jdbi.v3.core.statement Thestatementpackage provides most of the Fluent API to drive statement execution. -
-
Uses of ResultBearing in org.jdbi.v3.core
Methods in org.jdbi.v3.core that return ResultBearing Modifier and Type Method Description ResultBearingHandle. queryMetadata(MetaData.MetaDataResultSetProvider metadataFunction)Access database metadata that returns aResultSet. -
Uses of ResultBearing in org.jdbi.v3.core.result
Classes in org.jdbi.v3.core.result that implement ResultBearing Modifier and Type Class Description classBatchResultBearingExtends theResultBearingclass to provide access to the per-batch row modification counts.Fields in org.jdbi.v3.core.result declared as ResultBearing Modifier and Type Field Description private ResultBearingBatchResultBearing. delegateMethods in org.jdbi.v3.core.result that return ResultBearing Modifier and Type Method Description static ResultBearingResultProducers. createResultBearing(java.util.function.Supplier<java.sql.PreparedStatement> preparedStatementSupplier, ResultProducers.ResultSetCreator resultSetCreator, StatementContext ctx)Create aResultBearinginstance backed by aResultSet.static ResultBearingResultBearing. of(java.util.function.Supplier<java.sql.ResultSet> resultSetSupplier, StatementContext ctx)Returns a ResultBearing backed by the given result set supplier and context.Methods in org.jdbi.v3.core.result that return types with arguments of type ResultBearing Modifier and Type Method Description static ResultProducer<ResultBearing>ResultProducers. returningGeneratedKeys(java.lang.String... generatedKeyColumnNames)Result producer that returns aResultBearingover the statement-generated keys.static ResultProducer<ResultBearing>ResultProducers. returningResults()Result producer that returns aResultBearingover the statement result rows.Constructors in org.jdbi.v3.core.result with parameters of type ResultBearing Constructor Description BatchResultBearing(ResultBearing delegate, java.util.function.Supplier<int[]> modifiedRowCountsSupplier) -
Uses of ResultBearing in org.jdbi.v3.core.statement
Classes in org.jdbi.v3.core.statement that implement ResultBearing Modifier and Type Class Description classMetaDataAccess to Database Metadata.classPreparedBatchRepresents a prepared batch statement.classQueryStatement providing convenience result handling for SQL queries.Methods in org.jdbi.v3.core.statement that return ResultBearing Modifier and Type Method Description ResultBearingPreparedBatch. executeAndReturnGeneratedKeys(java.lang.String... columnNames)Deprecated.UsePreparedBatch.executePreparedBatch(String...)which has the same functionality but also returns the per-batch modified row counts.ResultBearingUpdate. executeAndReturnGeneratedKeys(java.lang.String... generatedKeyColumnNames)Execute the statement and returns any auto-generated keys.ResultBearingOutParameters. getRowSet(int pos)ResultBearingOutParameters. getRowSet(java.lang.String name)
-