Uses of Interface
io.ebean.SqlRow
Packages that use SqlRow
-
Uses of SqlRow in io.ebean
Modifier and TypeMethodDescriptionExtendedServer.findOne
(SqlQuery query, Transaction transaction) Execute the sql query returning a single MapBean or null.SqlQuery.findOne()
Execute the query returning a single row or null.static SqlRow
Create and return a SqlRow based on the resultSet with dbTrueValue and binaryOptimizedUUID options.Modifier and TypeMethodDescriptionExtendedServer.findList
(SqlQuery query, Transaction transaction) Execute the sql query returning a list of MapBean.SqlQuery.findList()
Execute the query returning a list.SqlQuery.findOneOrEmpty()
Execute the query returning an optional row.Modifier and TypeMethodDescriptionvoid
ExtendedServer.findEach
(SqlQuery query, Consumer<SqlRow> consumer, Transaction transaction) Execute the SqlQuery iterating a row at a time.void
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