A Dissection of Java JDBC to PostgreSQL, Part 2: Batching
Batching for PostgreSQL JDBC is a property of the extended protocol. It uniquely allows you to send multiple statements in a single request.

Batching for PostgreSQL JDBC is a property of the extended protocol. It uniquely allows you to send multiple statements in a single request.

When using Java JDBC with PostgreSQL, know the difference between simple and extended protocols, how to recognize protocol implementations, …