我们如何在 iBatis 中使用 mysql 的限制?

发布于 2024-09-09 21:27:28 字数 469 浏览 3 评论 0原文

我使用 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 技术交流群。

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

发布评论

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

评论(1

凶凌 2024-09-16 21:27:28

将 limit,offset 作为参数传递有什么问题?
例如(在Postgresql中,我认为Mysql是类似的):

<select id="getUserList" resultMap="userListResult">
    SELECT  ...
    FROM  users
    LIMIT #limit:INTEGER# OFFSET #offset:INTEGER#
</select>

然后在你的dao中你可以编码:

  Map params = new HashMap();
  params.put("limit",10);
  params.put("offset",100);
  res = sqlMap.queryForList("base.getUserList", params);

What's wrong with passing the limit,offset as parameters ?
For example (in Postgresql, I think Mysql is similar) :

<select id="getUserList" resultMap="userListResult">
    SELECT  ...
    FROM  users
    LIMIT #limit:INTEGER# OFFSET #offset:INTEGER#
</select>

Then in your dao you could code:

  Map params = new HashMap();
  params.put("limit",10);
  params.put("offset",100);
  res = sqlMap.queryForList("base.getUserList", params);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文