通常,当我想使用Mysql查询大型结果集时,我写这个(取自this answer):stmt = conn.createStatement(java.sql.ResultSet.TYPE_FORWARD_ONLY, java.sql.ResultSet.CONCUR_READ_ONLY);stmt.setFetchSize(Integer.MIN_VA...
通常,当我想使用Mysql查询大型结果集时,我写这个(取自this answer):
stmt = conn.createStatement(java.sql.ResultSet.TYPE_FORWARD_ONLY, java.sql.ResultSet.CONCUR_READ_ONLY);
stmt.setFetchSize(Integer.MIN_VALUE);
现在我使用的是jOOQ 2.0.5,我无法达到相同的效果.
我试过没有运气调用fetchLazy,它将整个结果集加载到内存中:
Cursor<Record> result = query.fetchLazy(Integer.MIN_VALUE);
作为一种解决方法,我可以使用query.getSQL()获取sql查询,并创建一个合适的Statement来执行它.
有没有其他方法可以使用jOOQ获得流结果集?
解决方法:
根据JDBC规范,Integer.MIN_VALUE不是Statement.setFetchSize()方法的有效参数:
Gives the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed for ResultSet objects genrated by this Statement. If the value specified is zero, then the hint is ignored. The default value is zero.
Parameters:
rows the number of rows to fetch
Throws:
SQLException – if a database access error occurs, this method is called on a closed Statement or the condition rows >= 0 is not satisfied.
实现可能会为负提取大小抛出SQLException.因此,jOOQ不接受小于0的参数.您应该尝试使用1的提取大小.与此同时,jOOQ的下一个版本可能会破坏JDBC标准,以支持这一documented MySQL feature
:
https://github.com/jOOQ/jOOQ/issues/1263(在jOOQ 2.2.0中实现)
本文标题为:java – Mysql流结果集和jOOQ fetchLazy
基础教程推荐
- Java中4种经典限流算法讲解 2023-03-30
- Springboot插件开发实战分享 2022-11-08
- Spring使用IOC与DI实现完全注解开发 2023-05-13
- 详解Java8中Optional的常见用法 2023-05-14
- SpringBoot Entity中枚举类型详细使用介绍 2023-06-17
- 如果我在sql而不是’in’中使用’或’,那么Java会出现堆空间错误 2023-11-04
- JavaMail整合Spring实现邮件发送功能 2023-04-12
- Java虚拟机内存分配与回收策略问题精细解读 2023-08-10
- 解决SpringBoot配置文件application.yml遇到的坑 2022-11-05
- 详解DES加密算法的原理与Java实现 2023-06-30