如何执行带有返回值的 SubSonic3 StoredProcedure
如何执行SP并获取返回值。 下面的代码始终返回 null 对象。 已使用与代码中相同的参数在数据库中测试存储过程,但 SubSonic sp 始终返回 null。 当通过 sql 在数据库中执行时,它返回正确的值。
这是使用 SubSonic 3.0.0.3。
myDB db = new myDB();
StoredProcedure sp = db.GetReturnValue(myParameterValue);
sp.Execute();
int? myReturnValue = (int?)sp.Output;
在上面的代码中,sp.Output 始终为 null。 在数据库中执行时,返回的变量是一个有效的整数(0 或更大)并且决不为 null。
存储过程代码如下:
CREATE PROCEDURE [dbo].[GetReturnValue]
@myVariable varchar(50)
AS
declare @myReturn int
BEGIN
set @myReturn = 5;
return @myReturn;
END
在SQL Server中执行存储过程时,返回值为'5'。
How do I execute a SP and get the return value. The below code always returns null object. The storedprocedure has been tested in the database using the same parameters as in code, but the SubSonic sp always returns null. When executed in the db via sql, it returns the correct values.
This is using SubSonic 3.0.0.3.
myDB db = new myDB();
StoredProcedure sp = db.GetReturnValue(myParameterValue);
sp.Execute();
int? myReturnValue = (int?)sp.Output;
In the above code, sp.Output is always null. When executed in the database, the returned variable is a valid integer (0 or higher) and is never null.
Stored procedure code below:
CREATE PROCEDURE [dbo].[GetReturnValue]
@myVariable varchar(50)
AS
declare @myReturn int
BEGIN
set @myReturn = 5;
return @myReturn;
END
When executing the stored proc in SQL Server, the returned value is '5'.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我复制了你的存储过程并逐步执行了 SubSonic 代码,并且 .Output 从未在任何地方设置。 解决方法是使用输出参数并在执行后引用它: sproc.OutputValues[0];
I copied your sproc and stepped through the SubSonic code and .Output is never set anywhere. A work around would be using an output parameter and referring to it after executing: sproc.OutputValues[0];
这是一个简单的方法:
在存储过程中,不要使用 RETURN,而是使用 SELECT,如下所示:
或
然后在代码中使用:
这将返回您在存储过程中选择的单个整数。
Here's a simple way to do it:
In the stored procedure, instead of using RETURN, use SELECT like this:
or
Then in the code use:
This will return the single integer you SELECTED in your stored procedure.