web-dev-qa-db-ja.com

AndroidのSQLite特定の行を更新する方法

私はしばらくの間、特定の行を更新しようとしていましたが、これを行うには2つの方法があるようです。私が読んで試したことから、あなたはただ使うことができます:

execSQL(String sql)メソッド

または:

update(String table, ContentValues values, String whereClause, String[] whereArgs)メソッド.

(私はAndroidに初めてで、SQLには非常に新しいので、これが間違っているかどうか私に知らせてください。)

それでは、実際のコードを見てみましょう。

myDB.update(TableName, "(Field1, Field2, Field3)" + " VALUES ('Bob', 19, 'Male')", "where _id = 1", null);

私はこれを達成しようとしています:

主キー(_id)が1に等しいField1、Field2、およびField3を更新します。

EclipseはWordの "update"の真下に赤い線を付けて、そしてこの説明を私に与えている。

SQLiteDatabase型のメソッドupdate(String、ContentValues、String、String [])は、引数(String、String、String、null)には適用されません。

ContentValuesを正しく割り当てていないと思います。誰かが私を正しい方向に向けることができますか?

125
EGHDK

まずContentValuesオブジェクトを作ります。

ContentValues cv = new ContentValues();
cv.put("Field1","Bob"); //These Fields should be your String values of actual column names
cv.put("Field2","19");
cv.put("Field2","Male");

それから、updateメソッドを使ってください。

myDB.update(TableName, cv, "_id="+id, null);
271
Akhil

簡単な方法:

String strSQL = "UPDATE myTable SET Column1 = someValue WHERE columnId = "+ someValue;

myDataBase.execSQL(strSQL);
47
Yaqub Ahmad

最初にContentValuesオブジェクトを作ります。

ContentValues cv = new ContentValues();
cv.put("Field1","Bob");
cv.put("Field2","19");

その後、updateメソッドを使用してください。 3番目の引数はwhere句です。 「?」プレースホルダーです。 4番目の引数(id)に置き換えられます

myDB.update(MY_TABLE_NAME, cv, "_id = ?", new String[]{id});

これは特定の行を更新するための簡潔な解決策です。

34
funcoder
  1. 私は個人的にその利便性のために.updateを好みます。しかしexecsqlは同じように動作します。
  2. 問題はあなたのコンテンツの価値であるとあなたは思います。 ContentValueオブジェクトを作成し、そこにデータベース行の値を入れる必要があります。

このコードはあなたの例を修正するはずです:

 ContentValues data=new ContentValues();
 data.put("Field1","bob");
 data.put("Field2",19);
 data.put("Field3","male");
 DB.update(Tablename, data, "_id=" + id, null);
23
KarlKarlsom

あなたはこれを試すことができます...

db.execSQL("UPDATE DB_TABLE SET YOUR_COLUMN='newValue' WHERE id=6 ");
10
Murugan.P

これがお役に立てば幸いです。

public boolean updatedetails(long rowId, String address)
  {
     SQLiteDatabase mDb= this.getWritableDatabase();
   ContentValues args = new ContentValues();
   args.put(KEY_ROWID, rowId);          
   args.put(KEY_ADDRESS, address);
  return mDb.update(DATABASE_TABLE, args, KEY_ROWID + "=" + rowId, null)>0;   
 }
5
sachi

あなたのDBでこのコードを使ってください `

public boolean updatedetails(long rowId,String name, String address)
      {
       ContentValues args = new ContentValues();
       args.put(KEY_ROWID, rowId);          
       args.put(KEY_NAME, name);
       args.put(KEY_ADDRESS, address);
       int i =  mDb.update(DATABASE_TABLE, args, KEY_ROWID + "=" + rowId, null);
    return i > 0;
     }

あなたのサンプルで更新するため。Javaこのコードを使用

  //DB.open();

        try{
              //capture the data from UI
              String name = ((EditText)findViewById(R.id.name)).getText().toString().trim();
              String address =(EditText)findViewById(R.id.address)).getText().toString().trim();

              //open Db
              pdb.open();

              //Save into DBS
              pdb.updatedetails(RowId, name, address);
              Toast.makeText(this, "Modified Successfully", Toast.LENGTH_SHORT).show();
              pdb.close();
              startActivity(new Intent(this, sample.class));
              finish();
        }catch (Exception e) {
            Log.e(TAG_AVV, "errorrrrr !!");
            e.printStackTrace();
        }
    pdb.close();
5
Rahul Baradia

あなたはSQLiteでこの1つの更新方法を試してみてください

int id;
ContentValues con = new ContentValues();
con.put(TITLE, title);
con.put(AREA, area);
con.put(DESCR, desc);
con.put(TAG, tag);
myDataBase.update(TABLE, con, KEY_ID + "=" + id,null);
4
Android

このように試すことができます:

ContentValues values=new ContentValues();
values.put("name","aaa");
values.put("publisher","ppp");
values.put("price","111");

int id=sqdb.update("table_name",values,"bookid='5' and booktype='comic'",null);
3
Amir john

更新の場合は、変更をコミットするためにsetTransactionSuccessfullを呼び出します。

db.beginTransaction();
try {
    db.update(...) 
    db.setTransactionSuccessfull(); // changes get rolled back if this not called
} finally {
   db.endTransaction(); // commit or rollback
}
2
Fracdroid

//これは更新用の簡単なサンプルコードです。

//最初にこれを宣言する

private DatabaseAppHelper dbhelper;
private SQLiteDatabase db;

//以下を初期化します

dbhelper=new DatabaseAppHelper(this);
        db=dbhelper.getWritableDatabase();

//更新コード

 ContentValues values= new ContentValues();
                values.put(DatabaseAppHelper.KEY_PEDNAME, ped_name);
                values.put(DatabaseAppHelper.KEY_PEDPHONE, ped_phone);
                values.put(DatabaseAppHelper.KEY_PEDLOCATION, ped_location);
                values.put(DatabaseAppHelper.KEY_PEDEMAIL, ped_emailid);
                db.update(DatabaseAppHelper.TABLE_NAME, values,  DatabaseAppHelper.KEY_ID + "=" + ?, null);

//「疑問符」の代わりにur idを入力することが私の共有設定の機能です。

2

あなたのsqlite行がユニークなidまたは他の同等物を持っているなら、あなたはこのようにwhere節を使うことができます

update .... where id = {here is your unique row id}
2
mcxiaoke
 public void updateRecord(ContactModel contact) {
    database = this.getReadableDatabase();
    ContentValues contentValues = new ContentValues();
    contentValues.put(COLUMN_FIRST_NAME, contact.getFirstName());
    contentValues.put(COLUMN_LAST_NAME, contact.getLastName());
    contentValues.put(COLUMN_NUMBER,contact.getNumber());
    contentValues.put(COLUMN_BALANCE,contact.getBalance());
    database.update(TABLE_NAME, contentValues, COLUMN_ID + " = ?", new String[]{contact.getID()});
    database.close();
}
2
sumit mehra

この方法を試してください

  String strFilter = "_id=" + Id;
  ContentValues args = new ContentValues();
  args.put(KEY_TITLE, title);
  myDB.update("titles", args, strFilter, null);**
1
Satyam
public long fillDataTempo(String table){
    String[] table = new String[1];
    tabela[0] = table; 
    ContentValues args = new ContentValues();
    args.put(DBOpenHelper.DATA_HORA, new Date().toString());
    args.put(DBOpenHelper.NOME_TABELA, nome_tabela);
    return db.update(DATABASE_TABLE, args, STRING + " LIKE ?" ,tabela);
}
0
João Rosa

SQLiteにおける更新方法:

public void updateMethod(String name, String updatename){
    String query="update students set email = ? where name = ?";
    String[] selections={updatename, name};
    Cursor cursor=db.rawQuery(query, selections);
}
0