Strange characters
Moderators: gto, EgonHugeist, olehs
-
- Junior Boarder
- Posts: 25
- Joined: 10.10.2009, 18:57
Strange characters
Hi,
I am using a db with character ENCODING = 'Latin9', and when I post a string including special characters (latin9) they are converted to strange ones.
Postgres 8.4.1
D2010 Pro
Zeos Rev.716
Did someone faced that before?
Thanks.
I am using a db with character ENCODING = 'Latin9', and when I post a string including special characters (latin9) they are converted to strange ones.
Postgres 8.4.1
D2010 Pro
Zeos Rev.716
Did someone faced that before?
Thanks.
-
- Junior Boarder
- Posts: 25
- Joined: 10.10.2009, 18:57
-
- Fresh Boarder
- Posts: 14
- Joined: 12.01.2010, 08:41
On the ZConnection.Properties, add this:
codepage=UTF8
Or on the ZConnection BeforeConnect Event:
Please, let me know if that runs as expected...
codepage=UTF8
Or on the ZConnection BeforeConnect Event:
Code: Select all
procedure TForm1.ZConnection1BeforeConnect(Sender: TObject);
begin
ZConnection1.Properties.Add('codepage=UTF8');
end;
-
- Fresh Boarder
- Posts: 14
- Joined: 12.01.2010, 08:41