Caching

Поиск
Список
Период
Сортировка
От Lufkin, Brad
Тема Caching
Дата
Msg-id 0E253E40DC78F4499CEDDE9223099F430706B821@xcgva040.northgrum.com
обсуждение исходный текст
Список pgsql-jdbc
Whenever I execute a query and retrieve the results with the sequence:

    ResultSet resultSet = statement.executeQuery("SELECT blah blah
blah...");
    while (resultSet.next()) {
        //do something with the resultSet
    }

it looks like the query is completely carried out before any results are
returned. This contrasts with the behavior of other databases (Informix
comes to mind) where the query returns immediately and the results are
returned as the database fetches them. Is my supposition correct, and, if
so, is there any way to make postgres behave the same way as Informix?
My reasons for wanting this behavior is that I'm displaying results in real
time to a user through a GUI and the gradual display of results is
preferable to a long pause followed by all the results at once.

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

Предыдущее
От: Juan Francisco Diaz
Дата:
Сообщение: Am I right?
Следующее
От: Andrew Hart
Дата:
Сообщение: java_objects and create table