Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm converting one of our Delphi 7 projects to Delphi X3 because we want to support Unicode. We're using MS SQL Server 2008/R2 as our database server. After changing some database fields from VARCHAR to NVARCHAR (and the fields in the accompanying ClientDatasets to ftWideString), random crashes started to occur. While debugging I noticed some unexpected behaviour by the TClientDataset/DbExpress:

For a NVARCHAR(10) databasecolumn I manually create a TWideStringField in a clientdataset and set the 'Size' property to 10. The 'DataSize' property of the field tells me 22 bytes are needed, which is expected since TWideStringField's encoding is UTF-16, so it needs two bytes per character and some space for storing the length. Now when I call 'CreateDataset' on the ClientDataset and write the dataset to XML (using .SaveToFile), in the XML file the field is defined as

<FIELD WIDTH="20" fieldtype="string.uni" attrname="TEST"/>

which looks ok to me.

Now, instead of calling .CreateDataset I call .Open on the TClientDataset so that it gets its data through the linked components ->TDatasetProvider->TSQLDataset (.CommandText = a simple select * from table)->TSQLConnection. When I inspect the properties of the field in my watch list, Size is still 10, Datasize is still 22. After saving to XML file however, the field is defined as

<FIELD WIDTH="40" fieldtype="string.uni" attrname="TEST"/>

..the width has doubled?

Finally, if I call .Open on the TClientDataset without creating any fielddefinitions in advance at all, the Size of the field will afterwards be 20(incorrect !) and Datasize 42. After saving to XML, the field is still defined as

<FIELD WIDTH="40" fieldtype="string.uni" attrname="TEST"/>

Does anyone have any idea what is going wrong here?

share|improve this question
Is it possible you forgot to Adjust the fields in DatasetProvider.Dataset? – bummi Nov 14 '12 at 13:36
DatasetProvider.Dataset points to a TSQLDataset and I don't have any fields/fielddefinitions at all in this TSQLDataset. – almo Nov 14 '12 at 13:42
For testing I changed the TSQLDataset's CommandMode from ctQuery into ctTable and made the designer retrieve the fielddefinitions which resulted in the same wrong result: a TWideStringField of size 20. – almo Nov 14 '12 at 13:50
1)Have you cleaned all your DCU's and made sure to rebuild from scratch? 2) Are you using components that you plopped down from the component palette? Just a hunch, but if so, maybe you need to delete them, put on new ones and again, delete all output and rebuild from scratch. – Mikey Apr 28 at 0:29

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.