今天有位朋友问我如何在Data Access Application Block中得到存储的过程的返回值,我才发现自己以前写的文章中确实没提到这方面的问题,现在来补充一下,具体的解决方法如下:
1、首先建立一个具有返回值的存储过程,作为示例,我就简单的建一个存储过程,如下:
create proc test
(
@id int
)
as
declare @flag int
select * from person where id=@id
if @@rowcount 0
set @flag=1
else
set @flag=0
return @flag
我们要在程序中获得这个返回值的方法如下:
[TestMethod]
public void TestReturnValue()
{
Database db = DatabaseFactor...[ 查看全文 ]