Re: PQescapeString/copy problem.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: PQescapeString/copy problem.
Дата
Msg-id 15926.1041215042@sss.pgh.pa.us
обсуждение исходный текст
Ответ на PQescapeString/copy problem.  (Kurt Roeckx <Q@ping.be>)
Список pgsql-hackers
Kurt Roeckx <Q@ping.be> writes:
> I'm using copy to import a table.  I use PQescapeString() to make
> it safe, but it seems to have a problem when there is a ' in it.

PQescapeString is not designed to escape data for COPY, and will not
do the right thing.  Quoting ' is not needed for COPY; what *is*
needed is quoting \n, \r, and \t (or whatever the column delimiter is).
And of course \.

Perhaps we should offer an alternative routine for quoting COPY data?
It would need to be told what the delimiter is supposed to be ...
        regards, tom lane


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

Предыдущее
От: Kurt Roeckx
Дата:
Сообщение: PQescapeString/copy problem.
Следующее
От: Palle Girgensohn
Дата:
Сообщение: why was libpq.so's version number bumped?