vote up 2 vote down star
1

I am facing problem capturing Chinese characters in a dataset.

In Delphi 2010 I have tried two kinds of components:

  1. Delphi default
  2. 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:

  1. Name - string
  2. Description - Memo

What should I do in order to get it work?

Reference Image

type

TForm1 = class(TForm)

ClientDataSet1: TClientDataSet;
ClientDataSet1Name: TStringField;
ClientDataSet1Description: TMemoField;
DataSource1: TDataSource;
ClientDataSet2: TClientDataSet;
ClientDataSet2Name: TStringField;
ClientDataSet2Description: TMemoField;
DataSource2: TDataSource;
flag
Do you use the ClientDataset standalone or do you retrieve the data for ClientDataset via a DatasetProvider? In the second case it is interessting to know from where the Provider retrieve the data. Perhaps it is a Database problem? – Heinz Z. Oct 15 at 10:34
It is Standalone ClientDataset without linking to Databse yet. – James Oct 16 at 4:43

3 Answers

vote up 0 vote down

I need more information before answer your question.

  1. What database you use?
  2. What is the encoding setting for the field you store the chinese characters?

You may paste the table's DDL here for further discussion.

link|flag
Hi Mr Chau, 1) Im using ClientDataset standalone without any data provider. 2) We are expecting that the result should be same for TEdit and TDBEdit. Isn't it D2010 a Native Unicode ? type TForm1 = class(TForm) ClientDataSet1: TClientDataSet; ClientDataSet1Name: TStringField; ClientDataSet1Description: TMemoField; DataSource1: TDataSource; ClientDataSet2: TClientDataSet; ClientDataSet2Name: TStringField; ClientDataSet2Description: TMemoField; DataSource2: TDataSource; – James Oct 16 at 1:49
vote up 0 vote down

Hi Mr Chau,

1) Im using ClientDataset standalone without any data provider.

2) We are expecting that the result should be same for TEdit and TDBEdit. Isn't it D2010 a Native Unicode ?

it is just a simple standalone ClientDataset as follow:


type TForm1 = class(TForm)

ClientDataSet1: TClientDataSet;

ClientDataSet1Name: TStringField;

ClientDataSet1Description: TMemoField;

DataSource1: TDataSource;

ClientDataSet2: TClientDataSet;

ClientDataSet2Name: TStringField;

ClientDataSet2Description: TMemoField;

DataSource2: TDataSource;

link|flag
James, use the Add comment facility to respond to questions, or edit your original to add more info. Don't answer with a new answer as it is answering your own question. – mj2008 Oct 16 at 9:11
vote up 1 vote down

In Delphi 2010, TStringField and TMemoField's value property is of type AnsiString. That is the reason why the Chinese characters doesn't show in the data aware controls.

Instead, you should declare the field type as ftWideString or ftWideMemo to create TWideStringField and TWideMemoField respectively.

link|flag
Thank you so much, I will try this – James Oct 19 at 3:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.