连接字符串动态 SqlExpress 2008
我有以下连接字符串:
string connectionstring = "Data Source=.\\SQLEXPRESS;AttachDbFilename=C:\\Users\\Harald\\Desktop\\Farmer´s Calc\\Programmierung\\WPF\\Finanz_WPF\\Finanz_WPF\\Datenbank\\FarmersCalc.mdf;Integrated Security=True;User Instance=True";
我需要使其动态,而不应包含整个路径...... 我用 |DataDirectory|
尝试过,但它似乎只在 ASP.NET 中工作。
我该如何处理这个问题?
I´ve got the following connectionstring:
string connectionstring = "Data Source=.\\SQLEXPRESS;AttachDbFilename=C:\\Users\\Harald\\Desktop\\Farmer´s Calc\\Programmierung\\WPF\\Finanz_WPF\\Finanz_WPF\\Datenbank\\FarmersCalc.mdf;Integrated Security=True;User Instance=True";
I need to make it dynamic, not the whole path should be included...
I tried it with |DataDirectory|
but it seems to work just in ASP.NET.
How can I manage this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以查看 SqlConnectionStringBuilder 类 (http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnectionstringbuilder.aspx)。
You can take a look at the SqlConnectionStringBuilder class (http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnectionstringbuilder.aspx).