我们如何在 iBatis 中使用 mysql 的限制?
我使用 iBatis 2.3.4
我有以下查询:
<select id="getUserList" resultMap="userListResult">
SELECT
id,
name,
login,
email
FROM
users
</select>
当我需要提供分页时,我使用:
sqlMap.queryForList("base.getUserList", startPosition, numItems);
然后 iBatis 生成无限制的查询,并在获取期间跳过额外的数据。 我相信有限制的工作会更快。
如何才能推动iBatis普遍使用LIMIT呢?是否可以? 也许我们可以描述一些方言?
I use iBatis 2.3.4
I have the following query:
<select id="getUserList" resultMap="userListResult">
SELECT
id,
name,
login,
email
FROM
users
</select>
And when I need to provide paging I use:
sqlMap.queryForList("base.getUserList", startPosition, numItems);
Then iBatis generates query without limit, and skips extra data during fetching.
I belive that work with limits is more faster.
How can we push iBatis to use LIMIT generally? Is It possible?
May be we can describe some dialect?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 limit,offset 作为参数传递有什么问题?
例如(在Postgresql中,我认为Mysql是类似的):
然后在你的dao中你可以编码:
What's wrong with passing the limit,offset as parameters ?
For example (in Postgresql, I think Mysql is similar) :
Then in your dao you could code: