To achieve better performance by reducing multiple DB calls, I want to execute multiple select queries in the same DB call. I'm using PostgresSQL database (version 14.9), Java (version 17) and Springboot (version 3.0.6).
Here is my code:
private final EntityManager entityManager;
final List<Object[]> results =
entityManager.createNativeQuery("select * from roles where role_id <= 200; select * from departments where department_id <= 50")
.getResultList();
Here is the error that I'm getting:
jakarta.persistence.PersistenceException: Converting `org.hibernate.exception.GenericJDBCException` to JPA `PersistenceException` : JDBC exception executing SQL [select * from roles where role_id <= 200; select * from departments where department_id <= 50]
........
........
........
........
........
Caused by: org.hibernate.exception.GenericJDBCException: JDBC exception executing SQL [select * from roles where role_id <= 200; select * from departments where department_id <= 50]
........
........
........
........
........
Caused by: org.postgresql.util.PSQLException: Multiple ResultSets were returned by the query.
at org.postgresql.jdbc.PgStatement.getSingleResultSet(PgStatement.java:257)
at org.postgresql.jdbc.PgPreparedStatement.executeQuery(PgPreparedStatement.java:138)
at org.hibernate.sql.results.jdbc.internal.DeferredResultSetAccess.executeQuery(DeferredResultSetAccess.java:217)
I tried below code:
private final EntityManager entityManager;
final List<Object[]> results =
entityManager.createNativeQuery("select * from roles where role_id <= 200; select * from departments where department_id <= 50")
.getResultList();
I am expecting 2 result sets in "results" List Object.
You're already creating trouble for yourself by doing select * from 2 different tables without a limit parameter.
You can either create a stored procedure and select whatever column you need OR you can do nested select statements and use it to query. You can always get a single resultset and use it. Refer Spring Boot, JPA / Hibernate: How to execute two raw SELECT queries at once?
But the performance hit you're referring is not due to multiple db queries, rather it's due to select * statements without limit parameter.