Example usage for Java org.hibernate ReplicationMode fields, constructors, methods, implement or subclass
The text is from its open source code.
ReplicationMode | EXCEPTION Throw an exception when a row already exists. |
ReplicationMode | IGNORE Ignore replicated entities when a row already exists. |
ReplicationMode | OVERWRITE Overwrite existing rows when a row already exists. |
ReplicationMode | LATEST_VERSION When a row already exists, choose the latest version. |