SQL Server Express C# 应用程序安装组合
将 SQL Server Express Edition 与要发布的应用程序一起部署的最佳方法是什么?我们还需要携带数据。
我听说您使用 SQL Server Express MSI 安装程序,但是我们如何导入所有表、视图、存储过程、数据等?
这将部署到多个客户站点,我们需要开始测试安装。
任何想法都将受到极大的欢迎。
谢谢。
What is the best way to deploy SQL Server Express Edition with an application for release? We also need to bring the data along as well.
I read that you use the SQL Server Express MSI installer, but how do we go about importing all the tables, views, sproc, data, etc?
This will be deployed to multiple customer sites and we need to start testing an install.
Any ideas will be greatly welcomed.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以随应用程序一起提供 MDF,并使用以下 MSDN 页面中的信息在应用程序运行时附加它。
http://msdn.microsoft.com/en-us/library/ms165716.aspx
这类似于 Visual Studio/ASP.Net 在 App_Data 中附加 MDF 文件的方式。
You can ship an MDF with your application and attach it at application runtime using the information at the following MSDN page.
http://msdn.microsoft.com/en-us/library/ms165716.aspx
This is similar to the way visual studio/ASP.Net attaches MDF files in App_Data.