Re: Fwd: Question

Поиск
Список
Период
Сортировка
От Michael Fuhr
Тема Re: Fwd: Question
Дата
Msg-id 20060307234455.GA36726@winnie.fuhr.org
обсуждение исходный текст
Ответ на Fwd: Question  ("German Raul Hoyos Parravicino" <rhoyos@gmail.com>)
Ответы postgresql-8.0.1/Solaris 9/Readline-5.1
Список pgsql-admin
On Tue, Mar 07, 2006 at 05:09:56PM -0500, German Raul Hoyos Parravicino wrote:
> I have a problem developing a ECPG program. I am making a programa using
> FETCH, when the second row is sent the following message appear:
>
> ==>sqlcode [-213] msg[NULL value without indicator in line 1192.]
[...]
> Is it possible to use something similar to "isnull" in Oracle?

Are you looking for the SQL-standard COALESCE?

test=> SELECT COALESCE('foo', 'bar');
 coalesce
----------
 foo
(1 row)

test=> SELECT COALESCE(NULL, 'bar');
 coalesce
----------
 bar
(1 row)

See also the ECPG documentation on using indicators to detect NULL.

--
Michael Fuhr

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

Предыдущее
От: "German Raul Hoyos Parravicino"
Дата:
Сообщение: Fwd: Question
Следующее
От: Louis Gonzales
Дата:
Сообщение: postgresql-8.0.1/Solaris 9/Readline-5.1