Asp.Net C#数据库连接无法正常工作

时间:2016-10-02 10:28:49

标签: c# asp.net database web-config connection-string

我的web.config中有这个连接字符串:

<connectionStrings>
    <add name="SQLServerConnectionString"
         connectionString= "..."
         providerName="System.Data.SqlClient" />
</connectionStrings>

这个简单的C#代码来自db:

dbAD.SelectCommand = new OleDbCommand("SELECT * FROM Profile ORDER BY FullName ASC", dbConnect);
dbAD.Fill(dbRS, "Profile");

if (dbRS.Tables("Profile").Rows.Count > 0)
{
    foreach (DataRow employee in dbRS.Tables("Profile").Rows)
    {
        Response.Write("Employee: " + Profile("FullName") + " " + Profile("Academy") + "<p>");
    }
}

然而,我收到错误:

  

当前上下文中不存在名称“dbAD”

我认为我需要事先定义dbAD或其他一些变量,但我只是猜测。

提前致谢!

1 个答案:

答案 0 :(得分:0)

试试这段代码:

我起来:

descriptionIklanBaris