Re: quick q re execute & scope of new

Поиск
Список
Период
Сортировка
От Scott Ribe
Тема Re: quick q re execute & scope of new
Дата
Msg-id 37770D76-41DE-451F-BD2A-AE9E0081B1AB@elevated-dev.com
обсуждение исходный текст
Ответ на Re: quick q re execute & scope of new  (Adrian Klaver <adrian.klaver@aklaver.com>)
Ответы Re: quick q re execute & scope of new  ("Andrew J. Kopciuch" <akopciuch@bddf.ca>)
Re: quick q re execute & scope of new  (Adrian Klaver <adrian.klaver@aklaver.com>)
Список pgsql-general
On Apr 2, 2015, at 10:14 PM, Adrian Klaver <adrian.klaver@aklaver.com> wrote:
>
> EXECUTE 'insert into ' || quote_ident(tblname) || ' values(' || new.* || ')'

Not that easy, strings are not quoted correctly, and null values are blank. Might be a function to translate new.* into
astring as needed for this use, but I found another way based on Tom's suggestion: 

execute('insert into ' || tblnm || ' select $1.*') using new;

--
Scott Ribe
scott_ribe@elevated-dev.com
http://www.elevated-dev.com/
https://www.linkedin.com/in/scottribe/
(303) 722-0567 voice







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

Предыдущее
От: Scott Ribe
Дата:
Сообщение: Re: quick q re execute & scope of new
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Error handling in C API function calls in a way that doesn't close client connection