SQL数据库的路径连接字符串对于桌面应用程序

时间:2016-02-01 06:26:15

标签: .net

我想通过路径获取Connect .mdf文件,就像我们可以为Access db文件

做的那样
Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\myFolder\myAccess2007file.accdb;Persist Security Info=False;

1 个答案:

答案 0 :(得分:0)

Server=.\SQLExpress;AttachDbFilename=C:\MyFolder\MyDataFile.mdf;Database=dbname;
Trusted_Connection=Yes;

查找Connection strings

的最佳位置