Search in sources :

Example 1 with DeleteStatement

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);
}
Also used : Statement(com.orm.androrm.statement.Statement) DeleteStatement(com.orm.androrm.statement.DeleteStatement) Where(com.orm.androrm.Where) DeleteStatement(com.orm.androrm.statement.DeleteStatement)

Aggregations

Where (com.orm.androrm.Where)1 DeleteStatement (com.orm.androrm.statement.DeleteStatement)1 Statement (com.orm.androrm.statement.Statement)1