| java.lang.Object org.jaffa.persistence.engines.jdbcengine.querygenerator.JdbcBridge
JdbcBridge | public class JdbcBridge (Code) | | Use the methods of this class to execute various operations on the database.
|
updatePersistentFlagsOnAdd | public static void updatePersistentFlagsOnAdd(IPersistent object)(Code) | | This method sets the appropriate flags on a Persistent object after being added to the database.
Parameters: object - the Persistent object. |
updatePersistentFlagsOnDelete | public static void updatePersistentFlagsOnDelete(IPersistent object)(Code) | | This method sets the appropriate flags on a Persistent object after being deleted from the database.
Parameters: object - the Persistent object. |
updatePersistentFlagsOnLock | public static void updatePersistentFlagsOnLock(IPersistent object)(Code) | | This method sets the appropriate flags on a Persistent object after the underlying row is locked in the database.
Parameters: object - the Persistent object. |
updatePersistentFlagsOnQuery | public static void updatePersistentFlagsOnQuery(IPersistent object, Criteria criteria)(Code) | | This method sets the appropriate flags on a Persistent object after being retrieved from the database.
Parameters: object - the Persistent object. Parameters: criteria - the Criteria used for retrieving the object. |
updatePersistentFlagsOnUpdate | public static void updatePersistentFlagsOnUpdate(IPersistent object)(Code) | | This method sets the appropriate flags on a Persistent object after being updated to the database.
Parameters: object - the Persistent object. |
|
|