I'm using the method db.update()
to change a value of a field in the table. when I insert the new value it is possible sum it with the existing?
public void Trasf() {
String value = Scegli.getText().toString();
cv.put(CTable.PREL, mI.getText().toString());
SQLiteDatabase db = mHelper.getWritableDatabase();
db.update(CTable.TABLE_NAME, cv, CTable.NO + " = ?", new String[] { value });
db.close();
}
}