I received this error when trying to do big query.
java.lang.OutOfMemoryError: Java heap space
I've searched and found that applying setAutoCommit(false) and setFetchSize methods to my prepared statement might help handling big query. However, when I used it, I received this error.
java.sql.SQLException: Illegal value for setFetchDirection().
What is the proper and easy way to handle large query?
What is the proper way to use setFetchSize?
Assuming you are using the MySQL Connector/J driver provided by MySQL, I believe the solution is found in this manual page (notice parameter 1 of
Connection::createStatement()
):