Hi
I am dipressed.

public void Update_Favourite_List(int header_id, int group_id, int
saying_id){
        int toney = 1;
        ContentValues values = new ContentValues();
        values.put("is_favourite", toney);
        try{
            myDataBase.beginTransaction();
            int row_aff = myDataBase.update("ContentBooth", values, "_id =
? and group_id = ? and header_id = ?", new String[]{saying_id+"",
group_id+"", header_id+""});
            myDataBase.setTransactionSuccessful();
            myDataBase.endTransaction();
        }
        finally{

        }
after executing the red line it crashes.
I dont know .why?
Take care.

Regards
RiskyCoder

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to