複数のクエリを連続して実行する必要がある
Statement st = cnx.createStatement();
ResultSet rs = st.executeQuery( "SELECT [good stuff]");
// do something smart with rs
rs = st.execute( "SELECT [better stuff]");
// do something smarter with rs
rs = st.execute( "SELECT [best stuff]");
// you got it
try{ rs.close();} catch( SQLException ignore){};
try{ st.close();} catch( SQLException ignore){};
これは、最初の 2 つの ResultSet が適切に閉じられていないという問題ですか、それともガベージ コレクション中に暗黙的に行われているのでしょうか?