我有一个用户输入字符串的文本视图。我需要在表中搜索该字符串,并在字符串匹配时返回一个布尔值。
我不是SQL,所以任何人都可以帮我弄清楚如何去做。
答案 0 :(得分:0)
假设您了解基础知识和SQLiteDatabase类型的对象db存在于DataAccessLayer中,下面是根据位置是否存在返回true的函数?
public boolean IsRecordExists(long empid) throws SQLException
{
String where = "empid =" + empid;
Cursor mCursor = db.query(true, "employeeinfo", new String[] {"empid"}, where, null,null, null, null, null);
if (mCursor != null)
{
if(mCursor.moveToFirst())
return true;
else
return false;
}
return false;
}