How to set sample size in Hibernate for Oracle database?

When programming directly in JDBC regarding an Oracle database, you can call stmt.setFetchSize(fetchSize)in the statement to determine the maximum number of records to retrieve in one round from a small default value. I would like to do this with Hibernate 3.2.

Can someone tell me where this will be installed?

+3
source share
1 answer
+1
source

Source: https://habr.com/ru/post/1731413/


All Articles