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 (整数) | 名前(テキスト) | 情報(テキスト)