以编程方式安装 MySQL 数据库驱动程序

发布于 2024-10-15 10:00:14 字数 122 浏览 1 评论 0原文

我们有一个 C# 4.0 (VS2010) 应用程序,需要安装 MYSQL(驱动程序)连接器)...我们不希望用户手动安装它。.有没有办法以编程方式执行此操作?通过 DLL COM 注册等?

可能的解决方案有哪些?

We have a C# 4.0 (VS2010) application that requires installation of a MYSQL (driver) Connector)... We don't want the user to manually install it.. Is there a way to do this programmatically? through a DLL COM Registration etc?

What are the possible solutions?

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

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

发布评论

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

评论(2

走野 2024-10-22 10:00:14

根据MySQL官方网站,有一个zip可用的软件包,其中包括其安装程序的源文件。您应该能够将该安装程序包含在 WiX 项目中,并通过 WiX 工具集 安装它来构建方便的解决方案以编程方式。

您还可以使用 MySQL conector.msi,它可以通过命令行开关 /quiet 以无人值守模式安装:

msiexec /package conector-net.msi /quiet

According to the official MySQL site, there is a zip package available, which includes the source files of their installer. You should be able to include that installer in a WiX project and build a convenient solution by installing it via the WiX toolset programatically.

You could also use the MySQL conector.msi which can be installed in unattended mode via the commandline switch /quiet:

msiexec /package conector-net.msi /quiet
怪我鬧 2024-10-22 10:00:14

为什么不为此创建一个常规安装呢?您可以使用 Visual Studio 创建安装项目,或者使用 NSIS 安装工具。

why not create a regular install for that? you can create setup project with Visual Studio or maybe use NSIS setup tool.

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