我想对我的 android 应用程序的 sqlite 数据库进行更新,但在更新方法中出现错误。
我的代码:
public void addInfo(View view){
EditText et = (EditText)findViewById(R.id.txtContacto);
String TAG = ((TextView)findViewById(R.id.textView2)).getText().toString();
String FACH = ((TextView)findViewById(R.id.textView1)).getText().toString();
ContentValues werte = new ContentValues();
werte.put("info",et.getText().toString());
mDatenbank.update(TAG, werte, "name="+FACH, null);
Toast.makeText(this,
getResources().getString(R.string.db_info_add),
Toast.LENGTH_SHORT).show();
}
TAG 是我的表名 FACH 是一列
表布局:
id (int) | 名称(文本) | 信息(文本)