| Package | Description |
|---|---|
| org.tentackle.pdo |
PDO persistence implementation.
|
| org.tentackle.persist |
Persistence layer implementation.
|
| Modifier and Type | Method and Description |
|---|---|
JoinedSelect<T> |
AbstractPersistentObject.getEagerJoinedSelect()
Adds the eager joins to the created SQL.
|
| Modifier and Type | Method and Description |
|---|---|
T |
AbstractPersistentObject.executeFirstPdoQuery(PreparedStatementWrapper st,
JoinedSelect<T> js)
Executes a query for a prepared statement and returns the first PDO.
|
List<T> |
AbstractPersistentObject.executeListQuery(PreparedStatementWrapper st,
JoinedSelect<T> js)
Executes the query for a prepared statement and returns the results in a list.
|
void |
AbstractPersistentObject.executeQueryToList(PreparedStatementWrapper st,
JoinedSelect<T> js,
List<T> list)
Executes the query for a prepared statement and adds the results to a list.
|
void |
AbstractPersistentObject.executeQueryToList(ResultSetWrapper rs,
JoinedSelect<T> js,
List<T> list)
Executes the query for a prepared statement and adds the results to a list.
|
TrackedList<T> |
AbstractPersistentObject.executeTrackedListQuery(PreparedStatementWrapper st,
JoinedSelect<T> js)
Executes the query for a prepared statement and returns the results in a tracked list.
|
void |
AbstractPersistentObject.readJoinedRow(ResultSetWrapper rs,
JoinedSelect<T> js)
Reads the next row from a result set within a joined select.
|
ResultSetWrapper |
AbstractPersistentObject.resultAll(JoinedSelect<T> js)
Gets the result set for all objects in the current context
for use in lists.
|
ResultSetWrapper |
AbstractPersistentObject.resultAllCursor(JoinedSelect<T> js)
Gets the result set for all objects in the current context
for use in cursors.
Cursors differ from lists because they need ResultSet.TYPE_SCROLL_INSENSITIVE set. |
ResultSetWrapper |
AbstractPersistentObject.resultByNormText(String normText,
JoinedSelect<T> js)
Gets the result set for the normtext query (where normtext like ?)
for use in lists.
If the given normtext is null or just "%" the method falls back to AbstractPersistentObject.resultAll(org.tentackle.pdo.JoinedSelect<T>). |
ResultSetWrapper |
AbstractPersistentObject.resultByNormTextCursor(String normText,
JoinedSelect<T> js)
Gets the result set for the normtext query (where normtext like ?)
for use in cursors.
Cursors differ from lists because they need ResultSet.TYPE_SCROLL_INSENSITIVE
set. |
| Modifier and Type | Method and Description |
|---|---|
JoinedSelect<T> |
ResultSetCursor.getJoinedSelect()
Gets the join configuration.
|
| Constructor and Description |
|---|
ResultSetCursor(T pdo,
ResultSetWrapper rs,
JoinedSelect<T> js)
Creates a cursor for a local session.
|
Copyright © 2016 Krake Softwaretechnik. All rights reserved.