抱歉,我相信这已经被问过很多次了,但我已经四处寻找一个很好的例子,但一直找不到。
我想运行一种方法来将值插入到表中所有行的特定列中。为了让您了解我正在使用的方法和查询,这是我的学生表的工作更新方法:
public void updateStudent(long id,String name, String age, String points,
String teachernote,byte[] blob) {
ContentValues cv = new ContentValues();
cv.put(Students.STUDENT_NAME, name);
cv.put(Students.STUDENT_AGE, age);
cv.put(Students.STUDENT_POINTS, points);
cv.put(Students.TEACHERNOTE, teachernote);
cv.put(Students.IMAGE,blob);
db = sqlHp.getWritableDatabase();
db.update(Students.TABLE, cv, Students.STUDENT_ID+"="+ id, null);
db.close();
}
我正在查询更新所有行的 STUDENT_POINTS。任何帮助将不胜感激,谢谢。