嗨,我想更新我的数据库中的一个条目,我正在为下面的 updateEntry 函数提供我的代码..我想更新密码字段我尝试了一些东西,但它不起作用
public String updateEntry(String Password) {
// Create object of content values
ContentValues updatedValues = new ContentValues();
// Assign values for each item
// updatedValues.put("USERNAME", User_name);
updatedValues.put("PASSWORD", Password);
String where = "PASSWORD=?";
db.update("LOGINDETAILS", updatedValues, where,
new String[] { Password });
return Password;
}
这是我为更新条目而编写的代码:
String Passwordnew =loginDataBaseAdapter.updateEntry(Confirm_password);
Passwordnew=Confirm_password;
我想用confirm_password更新数据库中的密码。我需要一些好的建议。