|
Produced by Siminov Software Solution LLP | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IDelete
Exposes API's to delete tuples from table.
Field Summary | |
---|---|
static java.lang.String |
INTERFACE_NAME
|
Method Summary | |
---|---|
IDeleteClause |
and(java.lang.String column)
Used to specify AND condition between where clause. |
java.lang.Object |
execute()
Used to delete, this method should be called in last to delete tuples from table. |
IDeleteClause |
or(java.lang.String column)
Used to specify OR condition between where clause. |
IDeleteClause |
where(java.lang.String column)
Column name of which condition will be specified. |
IDelete |
whereClause(java.lang.String whereClause)
Used to provide manually created Where clause, instead of using API's. |
Field Detail |
---|
static final java.lang.String INTERFACE_NAME
Method Detail |
---|
IDeleteClause where(java.lang.String column)
column
- Name of column.
IDelete whereClause(java.lang.String whereClause)
whereClause
- Manually created where clause.
IDeleteClause and(java.lang.String column)
column
- Name of column on which condition need to be specified.
IDeleteClause or(java.lang.String column)
column
- Name of column on which condition need to be specified.
java.lang.Object execute() throws DatabaseException
DatabaseException
- Throws exception if any error occur while deleting tuples from table.
|
Apache License 2.0 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |