Insert |
Insert.column(java.lang.String column,
java.lang.Object value) |
Insert a value into a column by name
|
Insert |
Insert.columns(ValueHolder values) |
Insert multiple values by ValueHolder
|
Insert |
Insert.defaults() |
Resets this INSERT statement columns and values
|
default Insert |
BeforeInsert.insert(Insert insert) |
Accept an existing INSERT statement as predecessor
|
default Insert |
BeforeInsert.insert(Table table) |
Continue query with INSERT
|
default Insert |
BeforeInsert.insert(java.lang.String table) |
Continue query with INSERT
|
static Insert |
SQLBuilder.Insert(Table table) |
Start with an INSERT statement
|
static Insert |
SQLBuilder.Insert(java.lang.String table) |
Start with an INSERT statement
|
default Insert |
BeforeInsert.insertSQL(java.lang.String sql) |
Use plain SQL to form this INSERT statement
|
Insert |
Insert.orAbort() |
Set this INSERT statement to be INSERT OR ABORT
|
Insert |
Insert.orFail() |
Set this INSERT statement to be INSERT OR FAIL
|
Insert |
Insert.orIgnore() |
Set this INSERT statement to be INSERT OR IGNORE
|
Insert |
Insert.orReplace() |
Set this INSERT statement to be INSERT OR REPLACE
|
Insert |
Insert.orRollback() |
Set this INSERT statement to be INSERT OR ROLLBACK
|
Insert |
InsertValue.query(Query query) |
Use a subquery as value supplier.
|
Insert |
Insert.replace() |
Set this INSERT statement to be REPLACE
|
Insert |
Insert.value(java.lang.Object value) |
Insert a value by value only.
|
Insert |
InsertValue.value(java.lang.Object value) |
Set a value to be inserted
|
Insert |
Insert.values(ValueHolder values) |
Insert multiple values by value only.
|
Insert |
InsertValue.values(ValueHolder values) |
Set multiple values to be inserted
|
Insert |
InsertValue.values(java.lang.Object... values) |
Set multiple values to be inserted
|