Unknown driver: DevartSQLServer. Delphi 10.4

Discussion of open issues, suggestions and bugs regarding usage of dbExpress drivers for SQL Server in Delphi and C++Builder
Post Reply
alexhaifa
Posts: 18
Joined: Thu 29 May 2014 12:48

Unknown driver: DevartSQLServer. Delphi 10.4

Post by alexhaifa » Thu 15 Oct 2020 19:10

Hello Guys,

In project time I can log in my DB and I don't have any problem.
But when I run the application, I get this message:

[ Unknown driver: DevartSQLServer. ]

My connection configuration are:

Code: Select all

BlobSize=-1
HostName=192.168.2.7,1438
DataBase=Hermesqualidade1
DriverName=DevartSQLServer
User_Name=sa
Password=z3us
LongStrings=True
EnableBCD=True
FetchAll=True

Where my application.exe is in, I have the dbexpsda41.dll

Regards

Stellar
Devart Team
Posts: 496
Joined: Tue 03 Oct 2017 11:00

Re: Unknown driver: DevartSQLServer. Delphi 10.4

Post by Stellar » Thu 29 Oct 2020 16:22

Thank you for the information. Please make sure that the dependency "DBXDevartSQLServer" has been added to the uses clause. For example:

Code: Select all

uses
  DBXDevartSQLServer;

Post Reply