在ado.net中如何使用sql server存储过程的输出参数和选择查询结果
本文关键字:参数 输出 选择 结果 查询 存储过程 server net ado sql 何使用 | 更新日期: 2023-09-27 17:54:38
你好,我想得到输出参数的值,以及选择查询的结果集。
我使用ExecuteNonQuery
,它给出了合适的输出参数值。
我使用ExecuteReader
,它没有为输出参数提供适当的值,但它为选择查询提供适当的值。
那么我应该用什么来得到这两个结果呢?
ALTER PROCEDURE [dbo].[XYZ]
(
@szUserName varchar(50),
@iOutDistinceBankCount int out
)
AS
BEGIN
declare @iCountDistinctBanks int;
set @iCountDistinctBanks = (select count (distinct a.DCC_BANK_ID )
from DEF a with(nolock)
join ABC b with(nolock) on
a.ROLEID = b.ROLEID
where b.USERNAME = @szUserName and b.STATUS_ID = 2)
if ((@iCountDistinctBanks > 1) or (@iCountDistinctBanks = 0))
begin
set @iOutDistinceBankCount = @iCountDistinctBanks
end
else
begin
set @iOutDistinceBankCount = 1;
select a.DCC_BANK_ID as DCC_BANK_ID
from DEF a with(nolock)
join ABC b with(nolock) on
a.ROLEID = b.ROLEID
where b.USERNAME = @szUserName and b.STATUS_ID = 2
end
END
这是我的c#代码。
Int32 i32DistinctDCCBankCount = -1;
Int64 i64BankStaticID = -1;
InitDB();
m_command = new SqlCommand("DCC_spUIDCCBankIdAccordingUser", m_con);
m_command.Parameters.Add("@szUserName", System.Data.SqlDbType.VarChar, 50).Value = MerchantName;
SqlParameter output = new SqlParameter("@iOutDistinceBankCount", System.Data.SqlDbType.Int);
output.Direction = System.Data.ParameterDirection.Output;
m_command.Parameters.Add(output);
m_command.CommandType = System.Data.CommandType.StoredProcedure;
m_con.Open();
// m_reader = m_command.ExecuteReader();
m_command.ExecuteNonQuery();
i32DistinctDCCBankCount = Convert.ToInt32(m_command.Parameters["@iOutDistinceBankCount"].Value);
if (i32DistinctDCCBankCount == 0)
{
iDistinctDCCBankCount = 0;
return i32DistinctDCCBankCount;
}
else if (i32DistinctDCCBankCount > 1)
{
iDistinctDCCBankCount = i32DistinctDCCBankCount;
return -2;
}
else if (i32DistinctDCCBankCount == 1)
{
i64BankStaticID = Convert.ToInt64(m_reader["DCC_BANK_ID"]);
iDistinctDCCBankCount = i32DistinctDCCBankCount;
return i64BankStaticID;
}
iDistinctDCCBankCount = 0;
return 0;
可以直接使用命令执行相同的查询。ExecuteReader(或者ExecuteNonQuery 如果你没有行集要处理),但是还需要执行其他几个步骤来处理返回的值。请记住,在尝试捕获Return值或OUTPUT参数之前,必须完成对所有行集的处理。下面的代码展示了如何使用ExecuteReader和循环来处理行集,然后捕获Return值和OUTPUT参数。您会发现处理OUTPUT参数(即使是很多参数)比处理SELECT返回的单行数据要快得多。
这里有一个例子
With cmd.Parameters
cn.Open()
dr = cmd.ExecuteReader(CommandBehavior.CloseConnection)
' Process rowset(s)
bolEOF = dr.Read
Do
Do While bolEOF = True
' Process rows
bolEOF = dr.Read()
Loop
Loop While dr.NextResult = True
cmd.Cancel()
// you need to close dataReader first
dr.Close()
Debug.WriteLine("@iOutDistinceBankCount:" & _
.Item("@iOutDistinceBankCount").Value.ToString)
End With
一种可能的方法是使用ado的NextRecordSet
而根本不使用输出参数
if ((@iCountDistinctBanks > 1) or (@iCountDistinctBanks = 0))
begin
set @iOutDistinceBankCount = @iCountDistinctBanks
select @iOutDistinceBankCount as OutDistinceBankCount
select 0 where 0 = 1
end
else
begin
set @iOutDistinceBankCount = 1;
select @iOutDistinceBankCount as OutDistinceBankCount
select a.DCC_BANK_ID as DCC_BANK_ID
from DEF a with(nolock)
join ABC b with(nolock) on
a.ROLEID = b.ROLEID
where b.USERNAME = @szUserName and b.STATUS_ID = 2
end
END
在代码中获取作为参数的第一个记录集然后是rs = rs.NextRecordSet()
……读取行
性能:输出参数与select
在这里真的不是一个考虑因素