PUBLIC:
Create an insert query with the custom call.
this();
setCall(call);
Methods Summary
public void
executeCommit()
INTERNAL:
Perform an insert.
// object will only be null if the transaction is being commited directly from a changeset
if (getObject() != null) {
// if the object is not null then it is more effecient to build the row from the
// object then the changeSet.
getQueryMechanism().insertObjectForWrite();
} else {
// has a changeSet so we must use it in the case that there is no object
getQueryMechanism().insertObjectForWriteWithChangeSet();
}