|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface RowInsertable
An interface for objects that support inserting rows into tables.
| Method Summary | |
|---|---|
RowInsertionBuilder |
insertInto(String tableName)
Initiates the building of a row insertion operation. |
RowInsertionBuilder |
insertInto(String schemaName,
String tableName)
Initiates the building of a row insertion operation. |
RowInsertionBuilder |
insertInto(Table table)
Initiates the building of a row insertion operation. |
boolean |
isInsertSupported()
Determines whether row insertion is supported |
| Method Detail |
|---|
boolean isInsertSupported()
RowInsertionBuilder insertInto(Table table)
throws IllegalArgumentException,
IllegalStateException,
UnsupportedOperationException
table - the table to insert a row into
IllegalArgumentException - if the table argument is null or invalid.
IllegalStateException - if the connection to the DataContext is read-only or another
access restriction is preventing the operation.
UnsupportedOperationException - in case isInsertSupported() is false
RowInsertionBuilder insertInto(String tableName)
throws IllegalArgumentException,
IllegalStateException,
UnsupportedOperationException
tableName - the name of the table to insert a row into
IllegalArgumentException - if the tableName argument is null or invalid.
IllegalStateException - if the connection to the DataContext is read-only or another
access restriction is preventing the operation.
UnsupportedOperationException - in case isInsertSupported() is false
RowInsertionBuilder insertInto(String schemaName,
String tableName)
throws IllegalArgumentException,
IllegalStateException,
UnsupportedOperationException
schemaName - the name of the schematableName - the name of the table to insert a row into
IllegalArgumentException - if the tableName argument is null or invalid.
IllegalStateException - if the connection to the DataContext is read-only or another
access restriction is preventing the operation.
UnsupportedOperationException - in case isInsertSupported() is false
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||