Re: cursores

From: Leonel <lnunez(at)gmail(dot)com>
To: "FRANZ RICHARD MARIN VASQUEZ" <frarimava(at)hotmail(dot)com>
Cc: pgsql-es-ayuda(at)postgresql(dot)org
Subject: Re: cursores
Date: 2007-03-23 15:47:37
Message-ID: 33c54f810703230847l3b48e800u274e474100be9d85@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

On 3/24/07, FRANZ RICHARD MARIN VASQUEZ <frarimava(at)hotmail(dot)com> wrote:
>
> buen dia ....
>
> alguien me puede ayudar .... como puedo saber la catidad de regitros que me
> trae un cursor o de in tipo de dato record .... y como hago para adelantarlo
> al siguiente registro
>
> he tratado con
>
> FETCH COUNT FROM cursor;
> FETCH NEXT FROM cursor
>
>
> muchas gracias por su ayuda
>
>
>
>
> ________________________________
> Consigue el nuevo Windows Live Messenger Pruébalo

leonel=> begin;
BEGIN
leonel=> declare a cursor for select * from aaa;
DECLARE CURSOR
leonel=> fetch next from a;
id | b
----+---
1 | 1
(1 row)

leonel=> fetch next from a;
id | b
----+---
2 | 1
(1 row)

leonel=> fetch 3 from a;
id | b
----+---
3 | 1
4 | 1
6 | 1
(3 rows)

--
Leonel

In response to

  • cursores at 2007-03-23 15:17:58 from FRANZ RICHARD MARIN VASQUEZ

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Marcos Renedo 2007-03-23 15:53:46 problema con triggers
Previous Message Leonel 2007-03-23 15:42:34 Re: Guardar y recuperar imagenes