使用 = 运算符查询从 sqlite 检索数据

发布于 2024-10-21 10:07:18 字数 188 浏览 1 评论 0原文

我正在使用查询从 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 技术交流群。

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

发布评论

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

评论(2

一抹微笑 2024-10-28 10:07:18
db.query(TABLE_NAME, new String[] { EMPLOYEE },USERID + " = '" + NAME + "'" , null, null, null, null);

USERID 好像是字符串类型。因此,您要比较的值应该用单引号引起来

db.query(TABLE_NAME, new String[] { EMPLOYEE },USERID + " = '" + NAME + "'" , null, null, null, null);

USERID seems to be a string type. So, the value you are comparing should be surrounded by single quote

GRAY°灰色天空 2024-10-28 10:07:18

您还可以像这样检索数据。

Cursor c = null;
        c = db.rawQuery("select field from tablename where field=" + your condition, null);

You can also retrieve data like this .

Cursor c = null;
        c = db.rawQuery("select field from tablename where field=" + your condition, null);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文