Re: Raise functionality

Поиск
Список
Период
Сортировка
От Sam Mason
Тема Re: Raise functionality
Дата
Msg-id 20091105143934.GS5407@samason.me.uk
обсуждение исходный текст
Ответ на Raise functionality  (Michael Gould <mgould@intermodalsoftwaresolutions.net>)
Список pgsql-general
On Thu, Nov 05, 2009 at 08:24:24AM -0600, Michael Gould wrote:
> We want to control from our application how to handle certain exceptions. I
> believe that Raise is the functionality that we want to use.  The
> documentation is a little light on what happens on the client side.

That's because it's up to the client to decide what to do.  You'll need
to look at the documentation of whatever library/code you're using
to talk to PG.  PG just aborts the transaction for anything apart
from NOTIFY and hence your client will just see the transaction/query
failing.  How you disentangle this is up to your code and how they with
your drivers.

I'd just write a plpgsql function that raises an error, call it from
your code, and see what happens.

--
  Sam  http://samason.me.uk/

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

Предыдущее
От: Michael Gould
Дата:
Сообщение: Raise functionality
Следующее
От: Tom Lane
Дата:
Сообщение: Re: How can I pass an array to SPI_execute_with_args()?