Re: ResultSet with more than 5 rows causes error

Поиск
Список
Период
Сортировка
От Giuseppe Sacco
Тема Re: ResultSet with more than 5 rows causes error
Дата
Msg-id 1190910427.18730.35.camel@scarafaggio
обсуждение исходный текст
Ответ на ResultSet with more than 5 rows causes error  (Ludovico Bianchini <metlud@yahoo.it>)
Список pgsql-jdbc
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)



В списке pgsql-jdbc по дате отправления:

Предыдущее
От: "Ludovico Bianchini"
Дата:
Сообщение: Re: ResultSet with more than 5 rows causes error
Следующее
От: Giuseppe Sacco
Дата:
Сообщение: Re: ResultSet with more than 5 rows causes error