T |
AbstractPersistentObject.executeFirstPdoQuery(org.tentackle.dbms.PreparedStatementWrapper st,
JoinedSelect<T> js) |
Executes a query for a prepared statement and returns the first PDO.
|
java.util.List<T> |
AbstractPersistentObject.executeListQuery(org.tentackle.dbms.PreparedStatementWrapper st,
JoinedSelect<T> js) |
Executes the query for a prepared statement and returns the results in a list.
|
void |
AbstractPersistentObject.executeQueryToList(org.tentackle.dbms.PreparedStatementWrapper st,
JoinedSelect<T> js,
java.util.List<T> list) |
Executes the query for a prepared statement and adds the results to a list.
|
void |
AbstractPersistentObject.executeQueryToList(org.tentackle.dbms.ResultSetWrapper rs,
JoinedSelect<T> js,
java.util.List<T> list) |
Executes the query for a prepared statement and adds the results to a list.
|
org.tentackle.misc.TrackedList<T> |
AbstractPersistentObject.executeTrackedListQuery(org.tentackle.dbms.PreparedStatementWrapper st,
JoinedSelect<T> js) |
Executes the query for a prepared statement and returns the results in a tracked list.
|
void |
AbstractPersistentObject.readJoinedRow(org.tentackle.dbms.ResultSetWrapper rs,
JoinedSelect<T> js) |
Reads the next row from a result set within a joined select.
The results may come in any order.
|
org.tentackle.dbms.ResultSetWrapper |
AbstractPersistentObject.resultAll(JoinedSelect<T> js) |
Gets the result set for all objects in the current context
for use in lists.
|
org.tentackle.dbms.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.
|
org.tentackle.dbms.ResultSetWrapper |
AbstractPersistentObject.resultAllWithExpiredTableSerials(JoinedSelect<T> js,
long oldSerial) |
Gets the result set for all objects in the current context with a given expired tableserial.
|
org.tentackle.dbms.ResultSetWrapper |
AbstractPersistentObject.resultByNormText(java.lang.String text,
JoinedSelect<T> js) |
Gets the result set for the normtext query.
|
org.tentackle.dbms.ResultSetWrapper |
AbstractPersistentObject.resultByNormTextCursor(java.lang.String text,
JoinedSelect<T> js) |
Gets the result set for the normtext query as a cursor.
|
protected int |
AbstractPersistentObject.setClassIdsInStatement(JoinedSelect<T> js,
org.tentackle.dbms.PreparedStatementWrapper st,
int ndx) |
Sets the class-ID parameters if required for the joins.
Notice that this method only works for joins with no subjoins and
is used only for eager joins, i.e.the default selects.
All code for non-eager joins is generated via the DbModelWurblet.
|