我是Kotlin编程的新手。我认为以下代码应该可以工作,但是该函数始终返回false。如果有人可以帮助查询数据,我将不胜感激。
fun login(email: String, password: String):Boolean{
val db = this.readableDatabase
var user = User()
val cursor = db.query(TABLE_NAME, arrayOf(colID), "$colEmail = ? AND
$colPassword = ?", arrayOf(email, password), null, null, null)
val cursorCount = cursor.count
cursor.close()
db.close()
if(cursorCount>0)
return true
else
return false
}