我的老师给我发了一个数据库文件,我在SQL SERVER中恢复了它。他还给我发了一个asp.net项目。他让我通过添加连接字符串将数据库文件连接到项目,但我不知道在哪里添加它..我必须帮助我继续项目。
答案 0 :(得分:1)
您好需要将app.config / web.config文件添加到项目中,然后详细说明该文件中的连接字符串。
首先你有web.config文件。然后你需要添加一个部分,如果不存在,则称为
<appSettings>
<add key="DBConnection" value="data source=nameofserver;initial catalog=dnname ;integrated security=True;MultipleActiveResultSets=True;" />
</<appSettings>
然后您可以在代码中获取此密钥并连接到Db
using(SqlConnection conn = new SqlConnection())
{
// this connection string age can be saved to config file
conn.ConnectionString = // read this fron config ;
// using the code here to query the data
}
答案 1 :(得分:0)
在Web.config文件中的配置节点内添加connectionStrings节点。
<configuration>
<connectionStrings>
<add name="DatabaseConnection" providerName="System.Data.SqlClient" connectionString="Server=myServerAddress;Database=myDataBase;Trusted_Connection=True;" />
</connectionStrings>
</configuration>
将myServerAddress
和myDataBase
替换为您的数据。这里的关键是完成connectionString
属性。