我正在创建一个查看记录的活动,并将其数据显示给用户进行修改。完成所有操作后,只需单击一个按钮即可将数据保存回数据库。但是,一旦节省了时间,我就会得到一个不寻常的“java.lang.IllegalArgumentException:Empty values”错误。我认为这是我的SQL代码错误,但我不太了解SQL找到它。我可以看看我做错了什么吗?
由于 〜Aedon
这是声明保存按钮并设置侦听器的位置。 mBoundService是托管数据库及其调用的服务。 DevicesTable是一个包含表名和列名的类。 DevicesTable.gt_fields [0]是autoincrementID,然后是serial,name和首次看到的列
public void init() {
mDevName = (EditText)findViewById(R.id.dv_name);
mCurReads = (TextView)findViewById(R.id.dv_readings);
mSave = (Button)findViewById(R.id.dv_save);
mSave.setOnClickListener(new OnClickListener() {
@Override public void onClick(View arg0) {
mBoundService.updateRecord(DevicesTable.gt_name, mId, DevicesTable.g_fields[2], mDevName.getText().toString());
}
});
}
这是数据库调用本身。
/**
* Updates a record at the given table with the given record.
* @param table The table to update
* @param id The id of the actual record. Do not pass the incorrect id!
* @param column The column in which the data is changing
* @param data The data that is to be changed to
*/
public void updateRecord(String table, String id, String column, String data) {
mDB.update(table, null, "SET " + column + " = '" + data + "',", new String[]{"id=" + id});
}
答案 0 :(得分:4)
您需要传入一个ContentValues
对象来告诉数据库哪些值在更新的行中的哪些列中。第三个和第四个参数中的字符串组成一个WHERE
子句,指示应更新哪些行。例如:
ContentValues values = new ContentValues();
values.put("foo", 123);
values.put("bar", 456);
db.update("some_table", values, "id=789", null);
这相当于发出查询
UPDATE some_table SET foo = 123, bar = 456 WHERE id = 789
您的代码会尝试将整个查询填入WHERE
子句,而update()
会阻止您进入,因为values
参数为null
。