public interface StrictSelectable
| Modifier and Type | Interface and Description |
|---|---|
static interface |
StrictSelectable.Select
For select statement
|
| Modifier and Type | Method and Description |
|---|---|
StrictSelectable.Select |
select(long... ids)
Select multiple ids
|
StrictSelectable.Select |
select(long id)
Select id.
|
StrictSelectable.Select |
select(java.lang.String condition)
Select some condition
|
StrictSelectable.Select |
select(java.lang.String whereClause,
java.lang.Object... args)
Select along with whereClause
|
StrictSelectable.Select select(java.lang.String condition)
condition - the conditioncom.bingzer.android.dbv.queries.SelectStrictSelectable.Select select(long id)
com.bingzer.android.dbv.IConfigid - id to searchcom.bingzer.android.dbv.queries.Selectcom.bingzer.android.dbv.IConfig#setIdNamingConvention(String)StrictSelectable.Select select(long... ids)
ids - array idcom.bingzer.android.dbv.queries.SelectStrictSelectable.Select select(java.lang.String whereClause, java.lang.Object... args)
whereClause - 'where' clauseargs - argumentscom.bingzer.android.dbv.queries.Select