-1

我知道这个问题已经在这个网站上以许多不同的方式被问过很多次,但似乎没有一个对我有用。我需要将数据从活动更新到我的数据库。我使用了这段代码:

public class EditAccount extends Activity {

private SQLiteDatabase database;
    private MySQLiteHelper dbHelper;
......
}
public void update_acc(View view){
        EditText accName=(EditText)findViewById(R.id.acc_name);
        EditText comment=(EditText)findViewById(R.id.comments);
        String acc_name=accName.getText().toString();
        String comments=comment.getText().toString();
        Intent intent=getIntent();
        int id =(int) intent.getExtras().getLong("data_id"); 
        String data_id= Integer.valueOf(id).toString();

        //When i debug the app it comes here and stops:
        database = dbHelper.getWritableDatabase();
        database.execSQL("Update comments set acc_name='"+acc_name+"', 
    comment='"+comments+"' where id="+id, null);
        database.close();
        Toast.makeText(getBaseContext(), "Account updated; Acc Name:"+acc_name+" Comment:"+comments, Toast.LENGTH_LONG).show();
        super.onBackPressed();}

请看一下,看看有没有问题。请帮忙!

先谢谢了,等待您的回复...

4

1 回答 1

1

它是这样完成的:

        EditText accName=(EditText)findViewById(R.id.acc_name);
        EditText comment=(EditText)findViewById(R.id.comments);
        String acc_name=accName.getText().toString();
        String comments=comment.getText().toString();
        Intent intent=getIntent();
        int id =(int) intent.getExtras().getLong("data_id"); 
        String data_id= Integer.valueOf(id).toString();

        database = dbHelper.getWritableDatabase();
          String query="Update comments set acc_name='"+acc_name+"', comment='"+comment+"' where _id="+id;
          database.execSQL(query);

        //Leave a message and go back
        Toast.makeText(getBaseContext(), "Account updated; Acc_name:"+acc_name+", Comment:"+comments, Toast.LENGTH_LONG).show();
        super.onBackPressed();
于 2013-07-29T16:24:21.227 回答