| Package | Description |
|---|---|
| com.avaje.ebean |
Core API (see Ebean and EbeanServer).
|
| Modifier and Type | Method and Description |
|---|---|
SqlRow |
SqlQuery.findUnique()
Execute the query returning a single row or null.
|
SqlRow |
EbeanServer.findUnique(SqlQuery query,
Transaction transaction)
Execute the sql query returning a single MapBean or null.
|
| Modifier and Type | Method and Description |
|---|---|
List<SqlRow> |
SqlQuery.findList()
Execute the query returning a list.
|
List<SqlRow> |
EbeanServer.findList(SqlQuery query,
Transaction transaction)
Execute the sql query returning a list of MapBean.
|
Map<?,SqlRow> |
SqlQuery.findMap()
Execute the query returning a map.
|
Map<?,SqlRow> |
EbeanServer.findMap(SqlQuery query,
Transaction transaction)
Execute the sql query returning a map of MapBean.
|
Set<SqlRow> |
SqlQuery.findSet()
Execute the query returning a set.
|
Set<SqlRow> |
EbeanServer.findSet(SqlQuery query,
Transaction transaction)
Execute the sql query returning a set of MapBean.
|
| Modifier and Type | Method and Description |
|---|---|
void |
SqlQueryListener.process(SqlRow bean)
Process the bean that has just been read.
|
Copyright © 2015. All rights reserved.