使用 ORMLite 编写查询
如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
天哪,ORMLite 站点上有大量关于如何执行此操作的文档。这是关于查询生成器的部分。
我不确定“完整查询”是什么意思,但您的示例可以进行一些调整:
仅返回名称是没有意义的,因为 Dao 层次结构旨在返回特定的 Client 对象。如果您只想要名称,您可以指定仅返回名称列:
这将返回仅包含 name 字段(以及 id 字段,如果存在)的
Client
对象列表)从数据库中提取。如果您只需要名称字符串,那么您可以使用
RawResults
功能。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:
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: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.