Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
public void delete(String name, Context x) {
String msg;
// Check if anything input
if (name == null) {
msg = "No input";
} else {
// Count the number of rows
String query = "SELECT COUNT(*) FROM " + TABLE_NA +
" WHERE " +
NA_NAME + " = '" + name + "';";
Cursor c = mDB.rawQuery(query, null);
int count = 0;
if (null != c)
if (c.getCount() > 0) {
c.moveToFirst();
count = c.getInt(0);
}
c.close();
// Now run the delete
query = "DELETE FROM " + TABLE_NA +
" WHERE " +
NA_NAME + " = '" + name + "';";
Log.i("delete() = ", query);
mDB.execSQL(query);
msg = count + " record(s) deleted";
}
makeToast(msg, x);
}