使用语句的SqlConnection和SqlCommand

我有一个连接到像这样设置的数据库来调用存储过程。 我只是想知道这是否是最好的方式来做到这一点。 我有两个使用语句一个用于sqlConnection,一个用于sqlCommand(我不确定它是否需要)

using (SqlConnection con1 = new SqlConnection(conString1))
{
    using (SqlCommand cmd1 = new SqlCommand())
    {
        cmd1.Connection = con1;

        cmd1.CommandType = CommandType.StoredProcedure;
        cmd1.CommandText = "updateVendorEstNo";
        cmd1.Parameters.AddWithValue("@plantNameNew", vPlantName.Value.ToString().Trim());

        var result = cmd1.Parameters.Add("@result", SqlDbType.Int);
        result.Direction = ParameterDirection.Output;
        var resultDesc = cmd1.Parameters.Add("@resultDesc", SqlDbType.VarChar, 100);
        resultDesc.Direction = ParameterDirection.Output;

        con1.Open(); // open connection
        cmd1.ExecuteNonQuery();

        res = result.Value.ToString().Trim();
        resDesc = resultDesc.Value.ToString().Trim();
    }                
}

我最大的问题是我在做什么时:

using (SqlCommand cmd1 = new SqlCommand())

它现在完成的方式不错吗?或者它应该更像,

using (SqlCommand cmd1 = new SqlCommand("updateVendorEstNo",con1))

我认为你拥有它的方式很好,因为using声明将确保对象以任何方式处理。

链接地址: http://www.djcxy.com/p/20375.html

上一篇: SqlConnection and SqlCommand with using statement

下一篇: C# Why SqlCommand constructor has both SqlConnection and SqlTransaction?