| Package | Description |
|---|---|
| com.avaje.ebean |
Core API (see Ebean and EbeanServer).
|
| com.avaje.ebeaninternal.server.core |
Core implementation objects
|
| com.avaje.ebeaninternal.server.query | |
| com.avaje.ebeaninternal.server.querydefn |
| 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.
|
| Modifier and Type | Method and Description |
|---|---|
SqlRow |
DefaultServer.findUnique(SqlQuery query,
Transaction t) |
| Modifier and Type | Method and Description |
|---|---|
List<SqlRow> |
RelationalQueryRequest.findList() |
List<SqlRow> |
DefaultServer.findList(SqlQuery query,
Transaction t) |
Map<?,SqlRow> |
RelationalQueryRequest.findMap() |
Map<?,SqlRow> |
DefaultServer.findMap(SqlQuery query,
Transaction t) |
Set<SqlRow> |
RelationalQueryRequest.findSet() |
Set<SqlRow> |
DefaultServer.findSet(SqlQuery query,
Transaction t) |
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultSqlRow
Used to return raw SQL query results.
|
| Modifier and Type | Method and Description |
|---|---|
protected SqlRow |
DefaultRelationalQueryEngine.readRow(RelationalQueryRequest request,
ResultSet rset,
String[] propNames,
int initialCapacity)
Read the row from the ResultSet and return as a MapBean.
|
| Modifier and Type | Method and Description |
|---|---|
List<SqlRow> |
CallableSqlQueryList.call()
Execute the query returning the resulting list.
|
| Constructor and Description |
|---|
SqlQueryFutureList(SqlQuery query,
FutureTask<List<SqlRow>> futureTask) |
| Modifier and Type | Method and Description |
|---|---|
SqlRow |
DefaultRelationalQuery.findUnique() |
| Modifier and Type | Method and Description |
|---|---|
List<SqlRow> |
DefaultRelationalQuery.findList() |
Map<?,SqlRow> |
DefaultRelationalQuery.findMap() |
Set<SqlRow> |
DefaultRelationalQuery.findSet() |
Copyright © 2014. All Rights Reserved.