Re: function to escape single quotes

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: function to escape single quotes
Дата
Msg-id 26096.1124896439@sss.pgh.pa.us
обсуждение исходный текст
Ответ на function to escape single quotes  (Saranya Sivakumar <sarlavk@yahoo.com>)
Список pgsql-novice
Saranya Sivakumar <sarlavk@yahoo.com> writes:
> I would like to write a PL/PGSQL function that would escape any
> occurence of single quotes in a string, and call this function before
> inserting the unescaped strings into some tables. Is this a good
> approach to make sure all strings are escaped before inserting into
> tables?

By the time the data gets to a pl/pgsql function, the damage (if any)
would already have been done.  You pretty much have to deal with this
issue on the client application side.

BTW there already are such functions available, you need not write your
own --- see quote_literal().  About the only context in which this is
needed in plpgsql is constructing dynamic query strings for use in
EXECUTE.

            regards, tom lane

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

Предыдущее
От: Saranya Sivakumar
Дата:
Сообщение: function to escape single quotes
Следующее
От: Josh Berkus
Дата:
Сообщение: Re: Transaction Questions