Uses of Interface
io.ebean.SqlRow
-
Packages that use SqlRow Package Description io.ebean io.ebean.service -
-
Uses of SqlRow in io.ebean
Methods in io.ebean that return SqlRow Modifier and Type Method Description SqlRow
ExtendedServer. findOne(SqlQuery query, Transaction transaction)
Execute the sql query returning a single MapBean or null.SqlRow
SqlQuery. findOne()
Execute the query returning a single row or null.static SqlRow
RawSqlBuilder. sqlRow(ResultSet resultSet, String dbTrueValue, boolean binaryOptimizedUUID)
Create and return a SqlRow based on the resultSet with dbTrueValue and binaryOptimizedUUID options.Methods in io.ebean that return types with arguments of type SqlRow Modifier and Type Method Description List<SqlRow>
ExtendedServer. findList(SqlQuery query, Transaction transaction)
Execute the sql query returning a list of MapBean.List<SqlRow>
SqlQuery. findList()
Execute the query returning a list.Optional<SqlRow>
SqlQuery. findOneOrEmpty()
Execute the query returning an optional row.Method parameters in io.ebean with type arguments of type SqlRow Modifier and Type Method Description void
ExtendedServer. findEach(SqlQuery query, Consumer<SqlRow> consumer, Transaction transaction)
Execute the SqlQuery iterating a row at a time.void
SqlQuery. findEach(Consumer<SqlRow> consumer)
Execute the SqlQuery iterating a row at a time.void
ExtendedServer. findEachWhile(SqlQuery query, Predicate<SqlRow> consumer, Transaction transaction)
Execute the SqlQuery iterating a row at a time with the ability to stop consuming part way through.void
SqlQuery. findEachWhile(Predicate<SqlRow> consumer)
Execute the SqlQuery iterating a row at a time with the ability to stop consuming part way through. -
Uses of SqlRow in io.ebean.service
Methods in io.ebean.service that return SqlRow Modifier and Type Method Description SqlRow
SpiRawSqlService. sqlRow(ResultSet resultSet, String dbTrueValue, boolean binaryOptimizedUUID)
Create based on a JDBC ResultSet.
-