Re: PSQLException: Too many update results were returned. - Mailing list pgsql-jdbc

From Oliver Jowett
Subject Re: PSQLException: Too many update results were returned.
Date
Msg-id 46B3CF4F.4020705@opencloud.com
Whole thread Raw
In response to PSQLException: Too many update results were returned.  (Albert Laszlo-Robert <albert_laszlorobert@yahoo.com>)
Responses Re: PSQLException: Too many update results were returned.
Re: PSQLException: Too many update results were returned.
List pgsql-jdbc
Albert László-Róbert wrote:

> yes, the statements are semicolon-separated. than you have some idea how
> to make it to work?

Try adding only one statement per addBatch() i.e. instead of

   stmt.addBatch("insert a; insert b; insert c");

do:

   stmt.addBatch("insert a");
   stmt.addBatch("insert b");
   stmt.addBatch("insert c");

> note: if i use a simple executeUpdate for multiple inserts that are
> semicolon-separated, than they work.

Yes, executeUpdate is a different code path that does understand
semicolon-separated paths.

The batch code expects exactly one command status per addBatch(). It's
not clear from the JDBC API what you're meant to do with an addBatch()
call that returns more than one thing, since executeBatch() is meant to
return one array element (representing the update status) per addBatch()
call AFAIK.

-O

pgsql-jdbc by date:

Previous
From: Albert László-Róbert
Date:
Subject: Re: PSQLException: Too many update results were returned.
Next
From: Oliver Jowett
Date:
Subject: Re: PSQLException: Too many update results were returned.