Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこのような状況を持っています:
con.setAutoCommit(true); Statement stmt = con.createStatement(); stmt.addBatch(query);//add all the queries stmt.executeBatch();
各クエリは個別にコミットしますか、それともバッチ全体に対して単一のコミットがありますか?
注:データベースはOracle 11です