Class MySQLReplaceClause

All Implemented Interfaces:
DMLClause<SQLInsertClause>, InsertClause<SQLInsertClause>, StoreClause<SQLInsertClause>

public class MySQLReplaceClause extends SQLInsertClause
MySQLReplaceClause is a REPLACE INTO clause

REPLACE works exactly like INSERT, except that if an old row in the table has the same value as a new row for a PRIMARY KEY or a UNIQUE index, the old row is deleted before the new row is inserted.

Author:
tiwe