SQLite查询问题

发布于 2024-11-02 05:24:34 字数 268 浏览 2 评论 0原文

我正在使用 sqlite db 做 android 项目,在选择查询中我有错误,即游标绑定异常(0),我的查询是:

Cursor c = myDB.rawQuery("SELECT * FROM COMPDETAIL WHERE city='Bangalore' AND service='Hospital';");

通过替换 AND 为 OR 它工作..

如果我想要 COMPDETAIL 通过多种条件...

提前致谢,

i am doing android project by using sqlite db ,in select query i have error that is cursor bound exception (0) ,my query is :

Cursor c = myDB.rawQuery("SELECT * FROM COMPDETAIL WHERE city='Bangalore' AND service='Hospital';");

by replacing AND by OR it working..

what am I suppose to do, if I want COMPDETAIL by multiple conditions...

Thanks in Advance,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

叹沉浮 2024-11-09 05:24:34

使用 moveToFirst():

if (c != null) { 
  if (c.moveToFirst()) {
    do { ...

use moveToFirst():

if (c != null) { 
  if (c.moveToFirst()) {
    do { ...
ぶ宁プ宁ぶ 2024-11-09 05:24:34

您确定数据库中存在这样的行(城市 = '班加罗尔' 和服务 = '医院')吗? AND 是 SQLite 中的 完全合法 关键字,没有理由它不会'不起作用,OR会...除非没有行匹配这两个条件,并且您仍然尝试获取它 - 这将产生类似于越界的内容例外。

Are you sure such row (with city = 'Bangalore' and service = 'Hospital') exists in your database? AND is perfectly legal keyword in SQLite, there's no reason it wouldn't work and OR would... unless, there's no row matching both criteria, and you still try to fetch it - which will produce something along the lines of out of bounds exception.

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