Re: [INTERFACES] '\' and varchar data type problem w/ MS Access a nd ODBC driver

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [INTERFACES] '\' and varchar data type problem w/ MS Access a nd ODBC driver
Дата
Msg-id 17576.903024498@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: [INTERFACES] '\' and varchar data type problem w/ MS Access a nd ODBC driver  ("Thomas G. Lockhart" <lockhart@alumni.caltech.edu>)
Список pgsql-interfaces
"Thomas G. Lockhart" <lockhart@alumni.caltech.edu> writes:
> One "problem" with the backend is it escapes characters on both input
> _and_ output, which has always struck me as at least partially defeating
> the usefulness of escaping input.

Actually, further experimentation shows that the backend does no such
thing, at least not in tuples returned by SELECT.

psql --- specifically, PQprint() in libpq --- is contributing the
"helpful" doubling of backslashes on printout.  What comes back from
the backend has the number of backslashes it should.

It looks like libpgtcl is contributing some weird backslash response
of its own, which means that things act different but just as broken
if you try to investigate the behavior from Tcl.

Right now I think the backend is behaving properly for SQL command input
and tuple data output.  The bizarreness is in the front ends.

COPY IN/OUT might have some glitches, haven't tried that yet.

            regards, tom lane

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

Предыдущее
От: Dirk Elmendorf
Дата:
Сообщение: Libpq problems
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [INTERFACES] Libpq problems (not)