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

From: Darko Prenosil <darko(dot)prenosil(at)finteh(dot)hr>
To: pgsql-hackers(at)postgresql(dot)org
Cc: kleptog(at)svana(dot)org
Subject: Re: I cant find it or I'm just lazy ?
Date: 2003-02-25 11:14:10
Message-ID: 200302251114.10642.darko.prenosil@finteh.hr
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Tuesday 25 February 2003 09:28, Christoph Haller wrote:
> > 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

I did not mean 'TRANSACTION ISOLATION LEVEL', but 'TRANSACTION LEVEL' !
OK, it is bad construction - my fault !
What I meant is : IS-TRANSACTION-ALREADY-STARTED ?
I used 'TRANSACTION LEVEL' because I saw that Bruce is working on nested
transactions, so in future there could be more than one transaction started ?

Thanks for Your reply !

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Dave Cramer 2003-02-25 12:02:00 Re: Intel drops 64-bit Itanium response from Linus
Previous Message Christoph Haller 2003-02-25 09:28:04 Re: I cant find it or I'm just lazy ?