我对 SQL 数据库及其位置感到困惑(在 Windows 应用程序项目 C# 2010 中)
现在我用 VS.net C# 2010 Express 版本编写了一个应用程序,并且还使用 SQL Express, 我在我的解决方案数据资源管理器中使用来创建和管理数据库表,这是我的连接字符串:
<add name="FamilySystem.Properties.Settings.FHDBConnectionString"
connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\FHDB.mdf;Integrated Security=True;User Instance=True"
providerName="System.Data.SqlClient" />
我将我的数据库放在该目录中:
AppDomain.CurrentDomain.SetData("DataDirectory", "C:\\MyApp");
1-但现在如果我想为数据库进行备份,则会出现错误并说:此数据库不存在,所以我也无法对其进行恢复。
2-放置我的数据库的赌注位置是什么?“复制到输出目录属性”的最佳价值是什么?
我想知道出了什么问题,因为从一个月前开始我就一直坚持这个问题,我不知道如何解决它,我真的需要您的帮助和支持:S,
如果您想了解更多信息,请告诉我,请提前致谢
Now i mad an Application with VS.net C# 2010 express edition and using SQL express also,
i used in my solution data explorer to create and mange tables of DB and this is my connectionstring:
<add name="FamilySystem.Properties.Settings.FHDBConnectionString"
connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\FHDB.mdf;Integrated Security=True;User Instance=True"
providerName="System.Data.SqlClient" />
and i place my DB in that Directory :
AppDomain.CurrentDomain.SetData("DataDirectory", "C:\\MyApp");
1-but now if i want to make backup for the DB the error appears and say : this database doesn't exists, so i can't also make restore for it.
2-what is the bet location to place my database and what about the "Copy to output Directory proprieties" what is the best value for it??
i want to know what the wrong because i have stucked with that since month ago and i can't figure out how to solve it really i need your help and support :S
thanks in advance if you want to know more tell me
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该将 sql 文件放置在应用程序的 Data 文件夹中。因此您不需要在应用程序中设置数据文件夹。
然后你就可以做任何你想做的事。只需右键单击您的项目并添加一个数据文件夹即可。特别是如果您的项目是 ASP.NET 项目。
最简单的方法是像这样设置连接字符串:
You should place you sql files in Data folder of application. so you do not need to set data folder in your application.
then you can do any thing you want. just right click on your project and add a data folder. specially if your project is an asp.net project.
bu the easiest way is to set your connection string like this :