am trying to find a way to instruct ODBC drivers - Datadirect ODBC to use win1251 for client session.
There are for ways mentioned in USer Guide:
- Using the \encoding command in psql, which allows you to change client encoding on the fly.
- Using SET client_encoding TO: => SET CLIENT_ENCODING TO 'value';
- Using the PGCLIENTENCODING environment variable.
- Setting the configuration parameter client_encoding in the postgresql.conf file
But as far as i understand options 1 and 3 in not suitable for ODBC drivers, option 2 I am also could not use - because i use SAS and this engine doesn't allow me to execute manually edited SQL's - it use a lot of automatic codegeneration.
I have tried option client_encoding in postgresql.conf file, moreover I have tired to execute follow clommand in psql admin session: alter user sasuser SET client_encoding to WIN1251; but nothing changes - by default client encoding is still UTF8...
currently in Datadirect ODBC.ini file i have follow string:
IANAAppCodePage=2251
Could somebody help me please?
set client_encoding to utf8and thet is the the root of the problem. Unfortunately - we didn't find a way how to fix this... – Yury Kochubeev Nov 22 '11 at 6:17