我想知道这种方法是否正确,可以验证“用户名”列中是否已经存在 _username 的值
public boolean verification(String _username) throws SQLException{
Cursor c = dataBase.rawQuery("SELECT * FROM "+TABLE_NAME+" WHERE "+KEY_USERNAME+"="+_username, null);
if (c!=null)
return true; // return true if the value of _username already exists
return false; // Return false if _username doesn't match with any value of the columns "Username"
}
有没有更好的方法来做同样的事情,我真的不确定,这似乎适合我。谢谢。