如何将MYSql集成到C#安装项目中?
我想在安装安装文件的同时安装MySql和数据库文件, 它是用 C# 开发的。
简而言之,在安装安装文件时只需安装所有内容 (MYSql,数据库文件)
所以,请指导我。
I want to install MySql and Database File while installing the Setup File,
which is developed in C#.
simply, while installing the setup file only everything needs to be installed
(MYSql,Database File)
So, please guide me on this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将自定义启动选项设置为安装文件。在安装文件的提交节点中添加必要的可执行文件,这些文件将在安装完成时执行。
如果要安装整个MySQL,则需要将MySQL的安装文件添加到Setup项目中。执行数据库脚本很简单,只需在MySQL安装后调用该脚本即可。
You can set Custom Launch Options to the Setup file. Add the necessary executibles in the Commit node of the setup file and those will get executed when your installation finishes.
As for installing entire MySQL, you would need to add the installation files of MySQL to the Setup project. Executing the Database Script would be simple, just call the script after MySQL installs.