2.3. バッチ処理 複数の更新処理(insert, update, delete)をまとめて実行する機能が、「java.sql.Statement」および「java.sql.PreparedStatement」には提供されています。 import java.sql.*; public class BatchSample{ public static void main(String args[]) throws ClassNotFoundException,SQLException{ Class.forName("org.postgresql.Driver"); Connection connection=DriverManager.getConnection("jdbc:postgresql:Training","postgres",""); Statement statamenet=