I am using JDBC to communicate with Relativity and it seems to work well most of the time but intermittently, seemingly at random, I get the following exception:
java.lang.NullPointerException
at relativity.jdbc.RPCInterface.SQLFreeStmtSP(Unknown Source)
at relativity.jdbc.RelativityResultSet.close(Unknown Source)
at relativity.jdbc.RelativityResultSet.finalize(Unknown Source)
at java.lang.ref.Finalizer.invokeFinalizeMethod(Native Method)
at java.lang.ref.Finalizer.runFinalizer(Finalizer.java:101)
at java.lang.ref.Finalizer.access$100(Finalizer.java:32)
at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:190)
There seems to be no pattern to when this exception will occur and it seems to occur completely independently of any task that is being performed. I have tried to catch the exception anywhere in the application where I am using a ResultSet but have not yet been able to catch it.
Has anyone had similar problems before?




