且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

JDBC 垃圾回收

更新时间:2022-10-15 17:52:05

If your code does not close ResultSets or PreparedStatements when done using then, your application will hog scarce resources — like cursors — in the database. See, for example:

The garbage collector does not know anything about closing ResultSets or PreparedStatements, so GC won't automagically take care of that for you. What will? Java 7's try-with-resources statement!