选择查询来检查android中SQLite数据库中的现有记录
我想知道查询来检查数据库中的特定记录是否已存在于我的应用程序中。
我为这些做了一项功能,但它不能正常工作。
public boolean ifExisting(String name) {
Cursor c = db.rawQuery("SELECT * FROM " + TABLE_NAME + "WHERE" + "name" + "=" + name, null);
if(c.getCount() == 0)
return false;
else
return true;
}
这是我需要执行检查复制过程功能的地方。
if(dh.ifExisting(dataVector.get(position)) == true) {
} else {
dh.insert(dataVector.get(position));
}
有人可以帮助我吗?
谢谢, 大卫
I want to know the Query to check whether the particular Record in the DataBase already exists or not for my application.
I have made one function for these, but it is not working properly.
public boolean ifExisting(String name) {
Cursor c = db.rawQuery("SELECT * FROM " + TABLE_NAME + "WHERE" + "name" + "=" + name, null);
if(c.getCount() == 0)
return false;
else
return true;
}
This is the place where I need to perform the function of checking for the Duplication Process.
if(dh.ifExisting(dataVector.get(position)) == true) {
} else {
dh.insert(dataVector.get(position));
}
Can anybody please help me.
Thanks,
david
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你能说得更具体一点吗? “无法正常工作”并不是真正的问题描述。
无论如何,您的查询缺少一些空格:
Can you be a bit more specific? "no working properly" isn't a real problem description.
Anyway, your query is missing some spaces:
第一个问题:您的 data.Vector.get(position) 返回一个字符串作为结果?
第二:如果您的原始查询不起作用,请尝试:
也许这可能对您有帮助
First question: your
data.Vector.get(position)
returns a string as result?Second: if your rawquery doesn't works, then try:
Maybe this might help you
将是“TablenameWHEREname”而不是“Tablename WHERE name”。
will be "TablenameWHEREname" instead of "Tablename WHERE name".