Methods Summary |
---|
public boolean | forceBatchStatementExecution()PUBLIC:
Returns if this query has been set to flush on execution.
return forceBatchStatementExecution;
|
public oracle.toplink.essentials.internal.sessions.AbstractRecord | getModifyRow()INTERNAL:
Return the modify row
return modifyRow;
|
public boolean | isModifyQuery()PUBLIC:
Return if this is a modify query.
return true;
|
public void | setForceBatchStatementExecution(boolean value)PUBLIC:
Allow setting this query to be the last statement added to a batch statement
and ensure it is flushed on execution. Setting to true will cause the batch
statement to be sent to the database. Default setting of false causes the batch
statement execution to be delayed to allow additional statements to
be added. Setting to true reduces the efficiency of batch writting.
This has no effect if batch writing is not enabled.
this.forceBatchStatementExecution = value;
|
public void | setModifyRow(oracle.toplink.essentials.internal.sessions.AbstractRecord row)INTERNAL:
Set the modify row
modifyRow = row;
|