I am facing problem capturing Chinese characters in a dataset.
In Delphi 2010 I have tried two kinds of components:
- Delphi default
- Developer Express components
As result, those components that do not link to the datasource are working fine, but those components do that link to the datasource have a problem. The Chinese characters have been converted into question marks, except in the TDBMemo. See the image below.
The dataset is a client-dataset with two fields:
- Name - string
- Description - Memo
What should I do in order to get it work?

type
TForm1 = class(TForm)
ClientDataSet1: TClientDataSet;
ClientDataSet1Name: TStringField;
ClientDataSet1Description: TMemoField;
DataSource1: TDataSource;
ClientDataSet2: TClientDataSet;
ClientDataSet2Name: TStringField;
ClientDataSet2Description: TMemoField;
DataSource2: TDataSource;
