SQLRecoverableException: I/O Exception: Connection reset

后端 未结 8 1315
太阳男子
太阳男子 2020-12-07 19:06

Yesterday evening I left the office with a running Java program written by me. It should insert a lot of records into our company database (Oracle) using a JDBC connection.

8条回答
  •  抹茶落季
    2020-12-07 19:42

    This simply means that something in the backend ( DBMS ) decided to stop working due to unavailability of resources etc. It has nothing to do with your code or the number of inserts. You can read more about similar problems here:

    • http://kr.forums.oracle.com/forums/thread.jspa?threadID=941911
    • http://forums.oracle.com/forums/thread.jspa?messageID=3800354

    This may not answer your question, but you will get an idea of why it might be happening. You could further discuss with your DBA and see if there is something specific in your case.

提交回复
热议问题