scrollableresults
Count of the result of a Hibernate Criteria group by - total grouped records returned
I have a Criteria-based query with the following grouping: Projections.projectionList() .add(Property.forName(\"xy开发者_Go百科z\").group()));[详细]
2023-04-04 10:33 分类:问答Using Hibernate's ScrollableResults to slowly read 90 million records
I simply need to read each row in a table in my MySQL database using Hibernate and write a file based on it.But there are 90 million rows and they are pretty big.So it seemed like the following would[详细]
2022-12-29 23:24 分类:问答Hibernate ScrollableResults Do Not Return The Whole Set of Results
Some of the queries we run have 100\'000+ results and it takes forever to load them and then send them to the client. So I\'m using ScrollableResults to have a paged results feature. But we\'re toppin[详细]
2022-12-25 21:45 分类:问答Is it possible using JPA to stream results from javax.persistence.Query.getResultList()?
I\'m new to JPA and I\'d like to know if it is possible to stream data from a result set, I mean I do not want to wait that the query is performed 开发者_Python百科to start dealing with first results,[详细]
2022-12-21 13:43 分类:问答can not use resultSet.setFetchDirection(ResultSet.TYPE_SCROLL_SENSITIVE) with spring jdbc DaoSupport with Oracle
I want to use scrollable resultset, so when I use two lines of code: rs.setFetchDirection(ResultSet.TYPE_SCROLL_SENSITIVE);[详细]
2022-12-16 23:22 分类:问答