Hi, im trying to get postgres and cygwin work with non ascii characters.
i enabled multibyte, i set LATIN1 while doing the initdb.
psql -l tells me that all database r using LATIN1.
how ever when i try the following:
psql test
create table test(name text);
insert into test values('prfr');
then select * from test, i got :
pr<E9>f<E9>r<E9>
tried under linux, it works fine, so i assume it comes from cygwin somehow.
Any idea please ?
Thx in advance