我正在尝试验证在我的 db android 中是否有用户注册。我有这个创建数据库的类,并有验证用户是否注册的方法:
public boolean isRegistered(String username, String password) {
boolean in = false;
Cursor cursor = db.query(TABLE_NAME_USER, new String[] {USERNAME,PASSWORD},
USERNAME + " = '" + username + "' AND " + PASSWORD + "= '" + password+"'",
null, null, null, null);
if(cursor.moveToFirst())
in=true;
if(!cursor.isClosed())
cursor.close();
return in;
}
运行此方法时应用程序崩溃。为什么?你能帮助我吗?