Re: bytea and text

Поиск
Список
Период
Сортировка
От Syan Tan
Тема Re: bytea and text
Дата
Msg-id 3806.1259389455@people.net.au
обсуждение исходный текст
Ответ на bytea and text  ("Jean-Yves F. Barbier" <12ukwn@gmail.com>)
Ответы Re: bytea and text  (Bob McConnell <rmcconne@lightlink.com>)
Список pgsql-novice
here's a quote from the postgresql documentation

Backslash characters (\) can be used in the COPY data to quote data characters that might otherwise be taken as
row or column delimiters. In particular, the following characters must be preceded by a backslash if they appear
as part of a column value: backslash itself, newline, carriage return, and the current delimiter character.

So if I scan a field value ( say a big buffer to hold an entire image), and have a second buffer to copy
an escaped image string to , and I read one of the 4 characters mentioned above, and insert a backslash
into the destination buffer, and then continue copying into the second buffer, I should end up with a string
that I can put inside a comma-separated text file ( so comma = the current delimiter character ), and then
I can bulk load a huge text file containing thousands of images without problems using COPY..FROM , is that
correct ?


On Sat 28/11/09 01:29 , "Tom Lane" tgl@sss.pgh.pa.us sent:
> richard terry <rterry@
> pacific.net.au> writes:> tom, I wonder if you could give us a sample of
> using client side lo_creat , > insert  functions to insert a blob into postgres
> - in an sql statement.
> There's an example program in the docs:
> http://www.postgresql.org/docs/8.4/static/lo-examplesect.html
> regards, tom lane
>
> --
> Sent via pgsql-novice mailing list (p
> gsql-novice@postgresql.org)To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-novice
>
>


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

Предыдущее
От: Syan Tan
Дата:
Сообщение: Re: bytea and text
Следующее
От: Bob McConnell
Дата:
Сообщение: Re: bytea and text