Interface | Description |
---|---|
Insert.RowRepeater |
Allows inserting the same list of non-generated values several times.
|
Operation |
An operation that the database setup executes.
|
Class | Description |
---|---|
CompositeOperation |
A composite operation or, in other words, an operation which consists in executing a sequence of other operations.
|
DeleteAll |
An operation which deletes everything from a given database table.
|
Insert |
Operation which inserts one or several rows into a table.
|
Insert.Builder |
A builder used to create an Insert operation.
|
Insert.RowBuilder |
A row builder, constructed with
Insert.Builder.row() . |
SqlOperation |
An operation which simply executes a SQL statement (using
Statement.executeUpdate(String) ). |
Truncate |
An operation which deletes everything from a given database table using a TRUNCATE statement., which is sometimes
faster that using a DELETE statement.
|