Oracle Weblogic Server (MOSC)

MOSC Banner

java.sql.SQLRecoverableException: Closed Statement at oracle.jdbc.driver.OracleClosedStatement.execu

edited Nov 27, 2015 10:12AM in Oracle Weblogic Server (MOSC) 1 commentAnswered

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

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center