Re: Function won't compile

Поиск
Список
Период
Сортировка
От Dr. Evil
Тема Re: Function won't compile
Дата
Msg-id 20011024214229.14212.qmail@sidereal.kz
обсуждение исходный текст
Ответ на Function won't compile  ("Joop van Bussel" <jvbussel@natlab.research.philips.com>)
Список pgsql-general
> Does anybody know why the function insert_case() won't compile. When I
> INSERT a new record I always get the following error message :
>
> NOTICE:  plpgsql: ERROR during compile of insert_case near line 1
> "RROR:  parse error at or near "
>
> Below is the function and trigger. ('Now' is surrounded with single quotes)
>
> CREATE FUNCTION insert_case () RETURNS INTEGER AS '
>   BEGIN
>     NEW.date_created := ''now'';
>   END;
> ' LANGUAGE 'SQL';

Very simple!  You don't use BEGIN and END within a LANGUAGE 'sql'
function.  You are mixing up sql with plpgsql.


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

Предыдущее
От: Haroldo Stenger
Дата:
Сообщение: Re: database development
Следующее
От: Guy Fraser
Дата:
Сообщение: Re: WWW interface for postgres