使用asp.net调用存储过程

时间:2011-10-20 13:37:20

标签: asp.net sql-server stored-procedures web-config connection-string

如果我的web.config文件中定义了连接字符串,如何从 C#代码创建与SQL db的连接(抱歉忘记指定),然后调用存储过程。然后我想最终以某种方式使用这些数据作为GridView的DataSource。

以下是在web.config中定义连接字符串的方法:

<connectionStrings>
 <add name="db.Name" connectionString="Data Source=db;Initial Catalog=dbCat;User ID=userId;Password=userPass;" providerName="System.Data.SqlClient" />
 </connectionStrings>

数据库服务器是Microsoft SQL服务器。

以下是我要找的内容:

ConnectionStringSettings conSet = ConfigurationManager.ConnectionStrings["db.Name"];
SqlConnection con = new SqlConnection(conSet.ConnectionString);

获取数据的代码相当简单。我更感兴趣的是从web.config文件中的connectionString变量访问它。

2 个答案:

答案 0 :(得分:7)

如果是这样的资源文件:

private static readonly string connString = Resource1.connString;

其中connString是密钥的名称。如果是web.config文件

像这样:

private static readonly string connString = System.Configuration.ConfigurationManager.AppSettings["strConn"];其中conn在您的网络配置文件中定义。

<add key="strConn" value="User ID=test;Password=test;Initial Catalog=TestDB;Data Source=NameOfServer;"/>

然后调用sproc:

  //connString = the string of our database app found in the resource file
                using (SqlConnection con = new SqlConnection(connString))
                {
                    using (SqlCommand cmd = new SqlCommand("EMPDLL_selClientByClientID", con))
                    {
                        cmd.CommandType = CommandType.StoredProcedure;
                        cmd.Parameters.Add("@ClientID", SqlDbType.VarChar).Value = cID;
                        con.Open();

                        using (SqlDataReader reader = cmd.ExecuteReader())
                        {
                            if (reader.HasRows)
                            {
                                if (reader.Read())
                                {
                                       //more code
                                }
                             }
                        }
                     }
                  }

如果您使用C#进行编码,那么VB.net的相同优惠只会更加冗长:),这里有一个小样本:

 Public Sub DeleteEmployee(ByVal lVID As Long)
        Dim conMyData As SqlConnection
        Dim cmdDelete As SqlCommand

        Try
            conMyData = New SqlConnection(connString)
            cmdDelete = New SqlCommand("delEmployee", conMyData)

            With cmdDelete
                .CommandType = CommandType.StoredProcedure
                'add the parameters
                .Parameters.Add("@LoginID", SqlDbType.BigInt).Value = lVID    'the request
                conMyData.Open()    'open a connection
                .ExecuteNonQuery()  'execute it
            End With

        Catch ex As Exception
            Throw ex
        Finally
            cmdDelete = Nothing
            conMyData.Close()
            conMyData = Nothing
        End Try
    End Sub

当然,您应该使用using语句而不是try/catch/finally来确保清理正在使用的资源。

答案 1 :(得分:4)

像这样......

using (var con = new SqlConnection(_connectionString))
{
    using (var cmd = new SqlCommand(_storedProcedureName, con))
    {
        cmd.CommandType = CommandType.StoredProcedure;
        cmd.Parameters.AddWithValue("@pMyParamater", myParamaterValue);
        con.Open();

        using (var reader = cmd.ExecuteReader())
        {
            while (reader.Read())
            {
                 // do something with the row
            }
        }
    }
}

说实话,这一切都非常简单,你应该能够从ADO.NET documentation

找到你需要的一切。