use of com.orm.androrm.statement.DeleteStatement in project androrm by androrm.
the class DeleteStatementTest method setUp.
@Override
public void setUp() {
Where where = new Where();
where.setStatement(new Statement("foo", "bar"));
mDelete = new DeleteStatement();
mDelete.from("table").where(where);
}
Aggregations