在 SQLite 和 Android 中使用 AND 子句

发布于 2024-11-02 13:26:22 字数 315 浏览 2 评论 0原文

我试图通过比较两列来获取值,但我的应用程序每次都会崩溃。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

-小熊_ 2024-11-09 13:26:22

尝试以下操作:

Cursor cursor= db.query(TABLE_IMAGES, 
                        new String[]{"_id"}, 
                        name +"=? AND " + time +"=?", 
                        new String[]{compareToThis, compareToThat},  
                        null, null, null);

假设 nametime 变量是字符串,并且 compareToThiscompareToThat 是参数,应该适合你。

Try the following:

Cursor cursor= db.query(TABLE_IMAGES, 
                        new String[]{"_id"}, 
                        name +"=? AND " + time +"=?", 
                        new String[]{compareToThis, compareToThat},  
                        null, null, null);

Given that name and time variables are Strings, and compareToThis and compareToThat are the values for the parameters, that should work for you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文