便携式 ODBC 连接驱动程序

发布于 2024-12-21 11:56:36 字数 182 浏览 0 评论 0原文

是否可以使 MySQL ODBC 连接驱动程序可移植?我开发了一个应用程序,该应用程序使用 MySQL ODBC 连接驱动程序和 TADOConnection,一切都在开发人员的计算机上正常工作,安装了 ODBC 连接驱动程序。当我在另一台计算机(未安装 ODBC 驱动程序)上运行此应用程序时,会出现错误。是否有机会包含必要的库来编程并使项目独立?

Is there any availability to make MySQL ODBC connection driver portable? I develop an application which uses MySQL ODBC ocnnection driver with TADOConnection and everything is working properly on developer's machine, there ODBC connection driver is installed. When I run this application on another machine (no ODBC driver installed) an error raises. Is there any opportunity to include necessary libs to program and make the project independent?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

同展鸳鸯锦 2024-12-28 11:56:36

您可以将 MySQL ODBC 驱动程序与安装程序捆绑在一起 (http://dev.mysql.com/doc/refman/5.1/en/connector-odbc-installation-binary-windows.html),但请记住,如果您使用使用免费的 GPL 连接器,您已绑定到 GPL,从而或者您也根据 GPL 发布了您的应用程序(和代码),或者您违反了 MySQL GPL 许可证。为了避免这种情况,您可以随时购买商业许可证。

You can bundle the MySQL ODBC driver with your installer (http://dev.mysql.com/doc/refman/5.1/en/connector-odbc-installation-binary-windows.html), but remember that if you're using the free GPL connector you're bound to the GPL, thereby or you release your application (and code) under the GPL as well, or you're violating the MySQL GPL license. To avoid it, you can always buy a commercial license.

赠意 2024-12-28 11:56:36

ODBC 需要一个驱动程序,因为它是对现有数据库访问库的 API 抽象 - 请参阅 如何解释为什么 ODBC 需要数据库驱动程序

由于没有安装数据库驱动程序的标准方法,因此您必须依赖特定的驱动程序说明。

对于 MySQL,如果您启动 setup -r,它将以静默方式安装 ODBC 提供程序。

请按照以下步骤添加数据库连接: 通过批处理脚本创建 mysql odbc 连接< /a>

ODBC needs a driver since it is an API abstraction over existing database access libraries - see How to explain why ODBC requires a database driver

Since there is no standard way of installing a database driver, you'll have to rely on the driver instructions, which are specific.

For MySQL, if you launch setup -r it would install the ODBC provider silently.

The follow these steps to add your database connection: create mysql odbc connection through batch script

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文