我是否需要安装 SQL Express 才能在 App_Data 中使用 MDB
如果我有一台安装了 ASP.NET 3.5 的服务器,但没有人明确安装 SQL Express。我的 Web 应用程序是否仍可以连接到 App_Data 文件夹中的 MDF 文件
If i have a server with ASP.NET 3.5 installed, where no one explicitly installed SQL Express. Can my web application still connect to an MDF file in the App_Data folder
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
否,您需要安装 SQL Express,请参阅 http://msdn.microsoft.com/ en-us/library/ms165716.aspx。
您始终可以将数据库部署到另一台安装了 SQL Server 的服务器。只需更新连接字符串即可。
如果您使用的是 SQL CE 4,则可以执行此操作,http://weblogs.asp.net/scottgu/archive/2010/06/30/new-embedded-database-support-with-asp-net.aspx
No, you need SQL Express installed, see http://msdn.microsoft.com/en-us/library/ms165716.aspx.
You could always deploy your DB to another server which has SQL Server installed though. Just have to also update connection string.
You can do this if you are using SQL CE 4 though, http://weblogs.asp.net/scottgu/archive/2010/06/30/new-embedded-database-support-with-asp-net.aspx