在 SQLite 和 Android 中使用 AND 子句
我试图通过比较两列来获取值,但我的应用程序每次都会崩溃。
Cursor cursor= db.query(TABLE_IMAGES,
new String[]{"_id"},
name +" = ?" + time +" = ?",
new String[]{compareToThis, compare to that},
null, null, null);
I am trying to fetch a value by comparing two columns but my application crashes every time.
Cursor cursor= db.query(TABLE_IMAGES,
new String[]{"_id"},
name +" = ?" + time +" = ?",
new String[]{compareToThis, compare to that},
null, null, null);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试以下操作:
假设
name
和time
变量是字符串,并且compareToThis
和compareToThat
是参数,应该适合你。Try the following:
Given that
name
andtime
variables are Strings, andcompareToThis
andcompareToThat
are the values for the parameters, that should work for you.