Re: column name gets substitudes inside an execute statement of a trigger function. how to avoid it?!

Поиск
Список
Период
Сортировка
От G. Allegri
Тема Re: column name gets substitudes inside an execute statement of a trigger function. how to avoid it?!
Дата
Msg-id e12429640906090807t12a7c7c7m68c5191ce0e74c7a@mail.gmail.com
обсуждение исходный текст
Ответ на Re: column name gets substitudes inside an execute statement of a trigger function. how to avoid it?!  (Richard Huxton <dev@archonet.com>)
Список pgsql-general
Great, quote_literal() solved it! It was so easy :)

Thx Richard

2009/6/9 Richard Huxton <dev@archonet.com>:
> G. Allegri wrote:
>>
>> ERROR: Column 'lets_try' does not exist
>> LINE 1: INSERT INTO seconda (nome) VALUES ('lets_try')
>>
>> My function and trigger are:
>>
>> CREATE OR REPLACE FUNCTION fun1() RETURNS TRIGGER AS
>> $primaprova$
>> DECLARE
>> nome varchar;
>> BEGIN
>> IF (TG_OP='INSERT') THEN
>> execute 'INSERT INTO ' || NEW.table || ' (nome) VALUES( "' || NEW.nome
>> || '" );';
>
> This will give VALUES ("lets_try") which is not a valid way to quote a
> string. It *is* a valid way to quote an identifier (e.g. a column).
>
> You probably want to use the quote_literal() function anyway to escape any
> single-quotes in the value being quoted.
>
> --
>  Richard Huxton
>  Archonet Ltd
>

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

Предыдущее
От: Richard Huxton
Дата:
Сообщение: Re: column name gets substitudes inside an execute statement of a trigger function. how to avoid it?!
Следующее
От: Grzegorz Jaśkiewicz
Дата:
Сообщение: Re: limit table to one row