Back to project page Android-Database-Complex-Joins.
The source code is released under:
Apache License
If you think the Android project Android-Database-Complex-Joins listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package be.florien.databasecomplexjoins.architecture; // w w w. j av a 2 s . c o m public class DBDelete { private String mValue; private String mTableName; private String mId; public DBDelete(String tableName, String id, String value){ mValue = value; mTableName = tableName; mId = id; } public String getTableName() { return mTableName; } public String getWhereClause() { return mId + " = ?"; } public String getWhereArgs() { return mValue; } }