Re: No. of rows on result set

Поиск
Список
Период
Сортировка
От Oliver Jowett
Тема Re: No. of rows on result set
Дата
Msg-id 42D6FF0F.1020102@opencloud.com
обсуждение исходный текст
Ответ на No. of rows on result set  (Dianne Yumul <dianne@wellsgaming.com>)
Ответы Re: No. of rows on result set  (Dianne Yumul <dianne@wellsgaming.com>)
Список pgsql-jdbc
Dianne Yumul wrote:
> Hello List,
>
> Recently upgraded to Postgresql 8.0.3, JDBC Driver 8.0 Build 311 and
> realized that I can no longer use the last() method for ResultSet
> because of the default TYPE_FORWARD_ONLY.

Right, you're not meant to use last() on TYPE_FORWARD_ONLY per the JDBC
spec, and the driver implementation now means we can't support it..

> Several of our apps use this
> to find the number of rows on a result set. Looking at the archives, my
> options would be to (1) do a separate SELECT COUNT(*) . . ., (2) change
> result set type to TYPE_SCROLL_INSENSITIVE, (3) replace arrays with
> something else that will not require the size of the result set, or (4)
> a better solution I haven't thought of : ).

If you need to use last(), then TYPE_SCROLL_INSENSITIVE is the way to go.

Note that this means the driver will retrieve the entire resultset in
one go rather than possibly using cursors (if you've set fetchsize and
have autocommit off) -- you might have problems with big resultsets. If
so I'd go with COUNT.

-O

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

Предыдущее
От: Oliver Jowett
Дата:
Сообщение: Re: Using a 7_4 JDBC driver to connect to 8.0
Следующее
От: Csaba Nagy
Дата:
Сообщение: Re: Using a 7_4 JDBC driver to connect to 8.0