在我的窗户中,我有线搭桥。
<configuration>
<configSections>
</configSections>
<connectionStrings>
<add name="Database"
connectionString="Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|Database.accdb"
providerName="System.Data.OleDb" />
</connectionStrings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
在所有类别中,我都使用以下代码连接数据库。
string connString = ConfigurationManager.ConnectionStrings["Database"].ConnectionString;
但它与数据库没有联系。
有些人可以指出错误。
But when i use this code without use of app.config it works fine.
string connString = "Provider=Microsoft.ACE.OLEDB.12.0; Data Source = C:\Users\Amrit\Desktop\Database.accdb; Persist Security Info = False;";
如何打断连接线,从而扼杀工作。