cursor control

Поиск
Список
Период
Сортировка
От Johann Zuschlag
Тема cursor control
Дата
Msg-id 43468BBB.3000402@online.de
обсуждение исходный текст
Ответ на Re: Compiling with libpq  ("Dave Page" <dpage@vale-housing.co.uk>)
Список pgsql-odbc
Hi Dave,

I don't understand the following in qresult.c:

503:        /* Speed up access */
504:        int                     fetch_count = self->fetch_count;

And then:

515:        if (fetch_count < fetch_count)
516:        {
517:                /* return a row from cache */
518:                mylog("next_tuple: fetch_count < fcount:
          returning tuple %d, fcount = %d\n", fetch_count, num_backend_rows);
519:                self->tupleField = the_tuples + (fetch_count * self->num_fields);               /* next row */
520:                self->fetch_count++;
521:                return TRUE;
522:        }
523:        else if (self->num_backend_rows < self->cache_size)

Maybe I'm misled. But  I assume (fetch_count < fetch_count) will never
become true.

Regards
Johann


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

Предыдущее
От: "Dave Page"
Дата:
Сообщение: Re: CVS Moved
Следующее
От: "Dave Page"
Дата:
Сообщение: Re: cursor control