.net 安装程序在安装时添加 mysql 数据库表
我的程序现在已经到了这样一个阶段,我正在编写 .net 安装程序以将其安装在正确的位置等。
我的问题是,有没有一种方法可以在运行安装程序时将数据库表添加到mysql数据库?
或者我应该编写一个单独的程序在安装后运行,该程序检查数据库并添加表(如果需要)?
再次感谢任何帮助
Vades
I am getting to a point now with my program where by i am writing the .net installer to install it in the right location etc.
my question is, is there a way that when i run the installer i can also add database tables to a mysql database?
or should i write a seperate program to run after install which checks the db and adds the tables if nessary?
once again any help is appreciated
Vades
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用安装程序类添加自定义安装程序操作
安装程序类
只需将其添加到您的主要输出并将其主要输出添加到“安装时”自定义操作
一步一步
Make use of the Installer Class to add Custom installer actions
Installer Class
Just add it to your primary output and add its primaryoutput to custom action "on install"
Step by step