使用 ORMLite 编写查询

发布于 2024-11-29 05:03:54 字数 326 浏览 1 评论 0原文

如何使用 ormlite 编写查询而不是使用 .create 或任何其他类似的东西?您能否告诉我这个简单示例的操作方法:

SELECT name FROM client

编辑,因为我无法回答自己: 我想我必须多搜索一点,无论如何,我发现如何使用 QueryBuilder 来做到这一点,如下所示:

newDao.query(newDao.queryBuilder().where.eq("name",valueofname)

如果有人知道如何编写完整的查询,那就太好了,否则,我会坚持使用这个解决方案

How can I write a query with ormlite instead of using .create or any other thing like that? Can you please show me how for this simple example :

SELECT name FROM client

EDIT since I can't answer myself :
I guess I had to search a little more , anyway I found how to do it with the QueryBuilder like this :

newDao.query(newDao.queryBuilder().where.eq("name",valueofname)

If someone knows how to write the full query that would be great , otherwise , I'll stick with this solution

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

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

发布评论

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

评论(1

吹泡泡o 2024-12-06 05:03:54

如何使用 ormlite 编写查询而不是使用 .create 或任何其他类似的东西?

天哪,ORMLite 站点上有大量关于如何执行此操作的文档。这是关于查询生成器的部分。

我不确定“完整查询”是什么意思,但您的示例可以进行一些调整:

列表<...> results = newDao.queryBuilder().where().eq("name",valueofname).query();

仅返回名称是没有意义的,因为 Dao 层次结构旨在返回特定的 Client 对象。如果您只想要名称,您可以指定仅返回名称列:

... clientDao.queryBuilder().selectColumns("name").where()...

这将返回仅包含 name 字段(以及 id 字段,如果存在)的 Client 对象列表)从数据库中提取。

如果您只需要名称字符串,那么您可以使用 RawResults 功能

How can I write a query with ormlite instead of using .create or any other thing like that?

Goodness, there are tons of documentation about how to do this on the ORMLite site. Here's the section on the query builder.

I'm not sure what you mean by "full query" but your example will work with some tweaks:

List<...> results = newDao.queryBuilder().where().eq("name",valueofname).query();

It does not make sense to just return the name since the Dao hierarchy is designed to return the specific Client object. If you just want the name the you can specify the name column only to return:

... clientDao.queryBuilder().selectColumns("name").where()...

That will return a list of Client objects with just the name field (and the id field if it exists) extracted from the database.

If you just want the name strings then you can use the RawResults feature.

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