Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在地球上部署一个使用 dbexpress 连接到远程 mysql 的 Delphi 2009 / 2010 应用程序?要包括哪些文件?谢谢
您需要 MySQL 的 dbexpress 驱动程序 (dbxmys.dll),以及作为单个 DLL (libmySQL.dll) 的 MySQL 客户端库。
在 Delphi 2009 中,有一个错误(我不确定它是否已被任何更新修复),这使您也需要在应用程序中部署 dbxdrivers.ini 和 dbxconnections.ini 文件;否则你会在目标机器上得到一个运行时错误。有一些解决方法,例如在您的代码中创建内存中的连接管理器,这在 Marco Cantu 的 Delphi 2009 手册中有所提及。