Re: ResultSet with more than 5 rows causes error
- From: Giuseppe Sacco <giuseppe(at)eppesuigoccas(dot)homedns(dot)org>
- To: Ludovico Bianchini <metlud(at)yahoo(dot)it>
- Cc: pgsql-jdbc(at)postgresql(dot)org
- Subject: Re: ResultSet with more than 5 rows causes error
- Date: Thu, 27 Sep 2007 18:27:07 +0200
- Message-id: <1190910427.18730.35.camel@scarafaggio> <text/plain>
Il giorno gio, 27/09/2007 alle 12.20 +0200, Ludovico Bianchini ha
scritto:
[...]
> while(source.next()) {
> insertCall.registerOutParameter(1, Types.INTEGER);
> for (int i = 1; i <= colCount; i++) {
> data = source.getObject(i);
> insertCall.setObject(i+1, data);
> }
> insertCall.execute();
[...]
I never used CallableStatement, but I do think you should use
insertCall.setObject(i,data)
instead of
insertCall.setObject(i+1,data)
Home |
Main Index |
Thread Index