以编程方式安装 MySQL 数据库驱动程序
我们有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据MySQL官方网站,有一个zip可用的软件包,其中包括其安装程序的源文件。您应该能够将该安装程序包含在 WiX 项目中,并通过 WiX 工具集 安装它来构建方便的解决方案以编程方式。
您还可以使用 MySQL conector.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:
为什么不为此创建一个常规安装呢?您可以使用 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.