hi,
i just wanted to use the DBX4 metadata classes.
But when i open my TDBXDataExpressMetaDataProvider
an error occured:
MetaData for MSSQL can't be loaded. Add driver unit to your uses ...
But DBXMSSQL is allready in my uses.
...
DBXInterBase,
DBXMSSQL,
DBXOracle,
DBXDevartInterBase,
DBXDevartSQLServer,
DBXDevartOracle;
Any idea what causes this error.
InterBase / FireBird works without any problems.
RAD Studio 2009 Enterprise
MS-SQL Server Express 2008 SP3
Thomas
Getting MetaData from DB
To solve this problem, apply the following change.
Find the line below in the DBXDevartSQLServer.pas unit:change it to this code:
Find the line below in the DBXDevartSQLServer.pas unit:
Code: Select all
DriverProperties[TDBXPropertyNames.ProductName] := 'MSSQL';
Code: Select all
DriverProperties[TDBXPropertyNames.ProductName] := 'Microsoft SQL Server';
-
- Posts: 30
- Joined: Tue 27 Jun 2006 15:46