如何从存储过程中检索标量值(ADO.NET)

时间:2009-06-25 13:17:49

标签: sql sql-server-2008 stored-procedures ado.net

如果在存储过程中,我只执行一个语句select count(*) from sometable,然后从客户端(我使用C#ADO.Net SqlCommand来调用存储过程),我怎样才能检索{{1}有价值?我正在使用SQL Server 2008。

我很困惑,因为count(*)不用作存储过程的返回值参数。

提前谢谢, 乔治

3 个答案:

答案 0 :(得分:7)

要么像安德鲁建议的那样使用ExecuteScalar - 要么你必须稍微改变你的代码:

CREATE PROCEDURE dbo.CountRowsInTable(@RowCount INT OUTPUT)
AS BEGIN
  SELECT
    @RowCount = COUNT(*)
  FROM 
    SomeTable
END

然后使用此ADO.NET调用来检索值:

using(SqlCommand cmdGetCount = new SqlCommand("dbo.CountRowsInTable", sqlConnection))
{
  cmdGetCount.CommandType = CommandType.StoredProcedure;

  cmdGetCount.Parameters.Add("@RowCount", SqlDbType.Int).Direction = ParameterDirection.Output;

  sqlConnection.Open();

  cmdGetCount.ExecuteNonQuery();

  int rowCount = Convert.ToInt32(cmdGetCount.Parameters["@RowCount"].Value);

  sqlConnection.Close();
}

马克

PS:但在这个具体的例子中,我想只需执行ExecuteScalar的替代方案就更简单,更容易理解。如果您需要返回多个值(例如,从多个表中计算等),此方法可能正常工作。

答案 1 :(得分:6)

当您执行查询调用ExecuteScalar时 - 这将返回结果。

  

执行查询,并返回查询返回的结果集中第一行的第一列。其他列或行将被忽略。

由于您只返回一个值,因此只返回count表达式中的值。您需要将此方法的结果转换为int

答案 2 :(得分:1)

marc_s回答工作正常整数。但是对于varchar,必须指定长度。

cmdGetCount.Parameters.Add("@RowCount", SqlDbType.varchar,30).Direction = ParameterDirection.Output;