views:

377

answers:

1

Assuming the Firebird client is installed what additional files need to be included with a Delphi 2010 application that uses dbExpress to access the Firebird database.

I assume dbxfb.dll (midas is included in the project 'uses') is required. Any others?

+2  A: 

@John, you need deploy these files

  • dbxfb.dll (firebird dbexpress driver)
  • dbxconnections.ini
  • dbxdrivers.ini
  • midas.dll (if you use midas, unless you use the midaslib unit)
  • fbclient.dll (the Firebird client library)

Additionally you can check theses links

RRUZ
looks like you don't need these dbxconnections.inidbxdrivers.ini
John