使用 = 运算符查询从 sqlite 检索数据
我正在使用查询从 sqlite 检索数据,但收到错误。
我正在使用以下查询:
cursor = db.query ( TABLE_NAME, new String[] { EMPLOYEE }, USERID + " = " + NAME, null, null, null, null );
I am using a query to retrieve data from sqlite but I am getting an error.
I am using following query:
cursor = db.query ( TABLE_NAME, new String[] { EMPLOYEE }, USERID + " = " + NAME, null, null, null, null );
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
USERID 好像是字符串类型。因此,您要比较的值应该用单引号引起来
USERID seems to be a string type. So, the value you are comparing should be surrounded by single quote
您还可以像这样检索数据。
You can also retrieve data like this .