Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm doing update method in my DB helper class. But I can't resolve where i've done a mistake. There is no errors in log, but my field in table doesn't update.

public void updateJSON(long id, String newString) {
    ContentValues dataToInsert = new ContentValues();
    dataToInsert.put("cityJSON", newString);
    String where = "id=?";
    String[] whereArgs = new String[]{String.valueOf(id)};
    this.db.update(TABLE_NAME, dataToInsert, where, whereArgs); 
}

I'm transferring json string (with commas, brackets etc) and ID of the field.

share|improve this question
1  
Are you sure that there's already a registry with this id in the table? – Flávio Faria Dec 7 '12 at 11:34
@FlávioFaria yes, I'm sure :) – JagaJaga Dec 7 '12 at 11:35
Are you sure the column is called id? Normally on Android it's _id. – Graham Borland Dec 7 '12 at 12:13

4 Answers

up vote 0 down vote accepted

instead of

String[] whereArgs = new String[]{String.valueOf(id)};

try

String[] whereArgs = { Long.valueOf(id).toString() };

that works for me.

share|improve this answer
doesn't work :( – JagaJaga Dec 7 '12 at 12:05
@JagaJaga how does it now work? – skolima Dec 7 '12 at 12:10
@skolima same as it worked, zero rows were modified – JagaJaga Dec 7 '12 at 12:11
WOW, i can't understand how, but it has just worked for me! – JagaJaga Dec 7 '12 at 12:15
could you explain why it works ? – njzk2 Dec 7 '12 at 13:24
show 3 more comments

Maybe you want to try this code: String mString = Long.toString(id);

share|improve this answer
doesn't work :( – JagaJaga Dec 7 '12 at 12:03

I think use this code,

this.db.update(TABLE_NAME, dataToInsert, COLUMNNAME + "=?" ,
            new String[]{String.valueOf(id)});
share|improve this answer

db.update(...) method returns the number of rows affected. You can show this value in log. If number of rows that was affected equals zero :

  1. maybe there is something wrong with row names?
  2. maybe db declared as readableDatabase instead of writableDatabase? i mean

SQLiteDatabase db = getReadableDatabase();

instead of getWritableDatabase()?

EDITED:

You can write helper function just to be 100% sure that row (with id that you need) is actually exists in database:

public boolean isItemExistsInDB( int yourId){
    String selectQuery = "SELECT  * FROM " + 
                         TABLE_NAME+ " 
                         WHERE " + " id = '" + yourId+ "'";

    SQLiteDatabase db = this.getWritableDatabase();
    Cursor cursor = db.rawQuery(selectQuery, null);

    //count of rows with "id=yourId"
    int count= cursor.getCount();

    Log.d(getClass().getSimpleName(), "count="+count);

    if(count>0){
        return true;
    }
    else{
         //there is no item with "id=yourId"
        return false;
    }
}
share|improve this answer
OpenHelper openHelper = new OpenHelper(this.context); this.db = openHelper.getWritableDatabase(); – JagaJaga Dec 7 '12 at 11:59
And yes, it returns zero rows. But there can't be mistake with row id. The mistake is somewhere about the query.. – JagaJaga Dec 7 '12 at 12:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.