Cannot read ntext field

Discussion of open issues, suggestions and bugs regarding usage of dbExpress drivers for SQL Server in Delphi and C++Builder
Post Reply
eugene
Posts: 3
Joined: Mon 12 Nov 2007 04:02

Cannot read ntext field

Post by eugene » Thu 06 Dec 2007 01:51

I get the following message
EAssertionFailed with message 'Unknown data type (30)(D:\Projects\Delphi\Dbx\Source\dbexp.pas, line 1930)'

the query is
var SQLQuery:TSQLQuery;
...
SQLQuery.add('
SELECT O.ID,o.name,o.content,T.* FROM WARNINGMODELS O LEFT JOIN WARNINGMODELTAGFORMATS T ON
O.ID=T.MODELID ORDER BY O.ID.);

SQLQuery.Open;

o.content is ntext.

I use Delphi 2006
Version 3.10.8.0 of dbexpsda30.dll

Thank you

Antaeus
Posts: 2098
Joined: Tue 14 Feb 2006 10:14

Post by Antaeus » Thu 06 Dec 2007 09:19

This field type is supported in DbxSda 4. You can download the evaluation version for test from this page.

Post Reply