Re: I cant find it or I'm just lazy ?

Поиск
Список
Период
Сортировка
От Christoph Haller
Тема Re: I cant find it or I'm just lazy ?
Дата
Msg-id 3E5B3723.E3A4CB1D@rodos.fzk.de
обсуждение исходный текст
Ответ на I cant find it or I'm just lazy ?  (Darko Prenosil <darko.prenosil@finteh.hr>)
Ответы Re: I cant find it or I'm just lazy ?
Re: I cant find it or I'm just lazy ?
Список pgsql-hackers
>
> On Mon, Feb 24, 2003 at 07:53:05PM +0000, Darko Prenosil wrote:
> >     I need two answers I did not find in documentation :
> > How can I get exact number of rows in DECLARED CURSOR ?
> > OK, I can FETCH until NULL, but this does not fits my needs !
You may want to use FETCH ALL, otherwise what or your needs in detail?
>
> You need to move to the end of the cursor. When you declare a cursor
it
> doesn't run the query yet. You have to tell it to run the query before
it
> can tell you how many rows it is. I think the command is MOVE.
>
But how could one MOVE to the last row?

> How can I get information is TRANSACTION already started ?
> (TRANSACTION LEVEL)
>
Either
SHOW TRANSACTION ISOLATION LEVEL ;
NOTICE:  TRANSACTION ISOLATION LEVEL is READ COMMITTED
SHOW VARIABLE
or
select current_setting('TRANSACTION ISOLATION LEVEL');

Regards, Christoph




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

Предыдущее
От: Christoph Haller
Дата:
Сообщение: Re: REPEATED INSERT INTO ... 2nd thread
Следующее
От: Darko Prenosil
Дата:
Сообщение: Re: I cant find it or I'm just lazy ?