On Mon, 13 Feb 2006, Florian Weimer wrote:
> Which client libraries support pipelining, to reduce server
> round-trips?
JDBC supports batch execution for INSERT, UPDATE, and DELETE via
[Prepared]Statement.addBatch(). Support for multiple ResultSets is
available by concatenating queries with ; and sending them in the standard
fashion.
Kris Jurka