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 SqlRowExtendedServer. findOne(SqlQuery query, Transaction transaction)Execute the sql query returning a single MapBean or null.SqlRowSqlQuery. findOne()Execute the query returning a single row or null.static SqlRowRawSqlBuilder. 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 voidExtendedServer. findEach(SqlQuery query, Consumer<SqlRow> consumer, Transaction transaction)Execute the SqlQuery iterating a row at a time.voidSqlQuery. findEach(Consumer<SqlRow> consumer)Execute the SqlQuery iterating a row at a time.voidExtendedServer. 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.voidSqlQuery. 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 SqlRowSpiRawSqlService. sqlRow(ResultSet resultSet, String dbTrueValue, boolean binaryOptimizedUUID)Create based on a JDBC ResultSet.
-