java.sql.SQLRecoverableException: Closed Statement at oracle.jdbc.driver.OracleClosedStatement.execu
Hi All,
I am getting the following error at login to the application at first time
java.sql.SQLRecoverableException: Closed Statement at oracle.jdbc.driver.OracleClosedStatement.execute(OracleClosedStatement.java:4106) at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1378)<br> at weblogic.jdbc.wrapper.PreparedStatement.execute(PreparedStatement.java:94)
and with the following code
public static void clearModuleInfo(Connection connectionArg)
throws SQLException
{
CallableStatement localCallableStatement = null;
String localStrStatement = "{call SP_MODULE_NAME_INFO.INITIALISE_MODULE_NAME }";
localCallableStatement = connectionArg.prepareCall(localStrStatement);
localCallableStatement.execute();
localCallableStatement.close();
}
Could somebody help me. I am using Oracle 12c and weblogic 11g
Message was edited by: user13296466