Board index » delphi » Resolved: Error "dbExpress version 2.5 not supported yet" in Delphi 2007
Jan Doggen
Delphi Developer
Resolved: Error "dbExpress version 2.5 not supported yet" in Delphi 2007
2007-03-30 04:20:47 PM delphi255
FOUND IT!
I dynamically set up the TSQLConnection in code.
This said:
LibraryName := 'dbexpmss.dll';
Changed to:
LibraryName := 'dbxmss30.dll';
What a stupid oversight ;-(
(Old code)
I finally found this when I searched my entire code for strings 'dbx'
and 'dbex'.
jan
Leonel
Delphi Developer
2007-03-31 03:25:21 AM
Re:Resolved: Error "dbExpress version 2.5 not supported yet" in Delphi 2007
Jan Doggen writes:
Quote
I dynamically set up the TSQLConnection in code.
This said:
LibraryName := 'dbexpmss.dll';
Changed to:
LibraryName := 'dbxmss30.dll';
What a stupid oversight ;-(
(Old code)
Ouch. Yes, simple, but easy to miss. Glad you got this resolved (was