Обсуждение: SQL_ASCII encoding

Поиск
Список
Период
Сортировка

SQL_ASCII encoding

От
CSN
Дата:
What exactly is the "SQL_ASCII" encoding for
databases? Is it like Unicode, UTF-8, ISO_8859_x, ...?
In what cases wouldn't you want to use it?

__________________________________
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard
http://antispam.yahoo.com/whatsnewfree

Re: SQL_ASCII encoding

От
Tom Lane
Дата:
CSN <cool_screen_name90001@yahoo.com> writes:
> What exactly is the "SQL_ASCII" encoding for
> databases?

We interpret it pretty much as "we don't know the encoding".  We store
what the client sends and then regurgitate it, without any encoding
conversion in either direction.  Internal operations only understand
7-bit-ASCII characters in this mode.

            regards, tom lane