Re: SQLERRM & SQLSTAT

From: "Jaime Casanova" <systemguards(at)gmail(dot)com>
To: Ë®îÇk tåþîå þé®Ëz <hydra2099(at)hotmail(dot)com>
Cc: pgsql-es-ayuda(at)postgresql(dot)org
Subject: Re: SQLERRM & SQLSTAT
Date: 2006-06-22 23:42:30
Message-ID: c2d9e70e0606221642i36ba3a11m28a72afa87336be8@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

On 6/22/06, Ë(r)îÇk tåþîå þé(r)Ëz <hydra2099(at)hotmail(dot)com> wrote:
> Saludos lista, los molesto con una duda, estoy tratando de hacer una funcion
> PL/pgSQL que registra errores (numero y mensaje)generados por sentencias sql
> (insert, select, update, etc), he encontrado que la variable SQLSTATE
> contiene el numero y SQLERRM el mensaje de error
>
> Sin embargo cuando trato de hacer
>
> EXCEPTION
> WHEN others THEN
> mensaje:=SQLERRM ;
> RAISE EXCEPTION 'No se pudo registrar el error %',mensaje;
> RETURN NULL;
> END;
>
> --------------
> Me marca que la columna mensaje no esta definida, creo que he entendido mal

SQLSTATE y SQLERRM estan disponibles a partir de la version 8.1,
supongo que estaras usando 8.0 (por que antes de eso no existia el
bloque EXCEPTION) asi que el error seria por eso... actualiza a 8.1
para usar SQLSTATE y SQLERRM

--
Atentamente,
Jaime Casanova

"Programming today is a race between software engineers striving to
build bigger and better idiot-proof programs and the universe trying
to produce bigger and better idiots.
So far, the universe is winning."
Richard Cook

In response to

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Guille 2006-06-23 02:26:56 Unscribe
Previous Message Jaime Casanova 2006-06-22 23:37:49 Re: SQLERRM & SQLSTATE