Skip to content
Advertisement

What is the right way to deal with the PreparedStatement in the Java program flow?

There are two methods in which the PreparedStatement is used.

The first method is called in the second method.

First method:

Second method:

The class in which both methods are located extends the JDBCBaseManager.

JDBCBaseManager:

The ResultSet in the second method still contains the results from the first method.

I already tried to close the connection and open it again before the second method is executed, but then I get the errors:

java.sql.SQLException: No operations allowed after statement closed.

java.sql.SQLNonTransientConnectionException: No operations allowed after connection closed.

Can you tell me how to deal with the statement correctly in this case? Is my BaseManager incorrectly structured?

Advertisement

Answer

Here lies the error

You build the prepare statement only the first time the method getPreparedStatement is called because only the first time the field preparedStatement is null. Every next time you call the method getPreparedStatement you receive the previous preparedStatement from the previous SQL and not the new one.

Remove the check for if (preparedStatement == null) {

You need to build a new preparedStatement every time you want to execute a new SQL.

Advertisement