如何执行带有返回值的 SubSonic3 StoredProcedure

发布于 2024-08-02 03:46:48 字数 636 浏览 5 评论 0原文

如何执行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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

☆獨立☆ 2024-08-09 03:46:48

我复制了你的存储过程并逐步执行了 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];

前事休说 2024-08-09 03:46:48

这是一个简单的方法:

在存储过程中,不要使用 RETURN,而是使用 SELECT,如下所示:

SELECT @@ROWCOUNT 

SELECT @TheIntegerIWantToReturn

然后在代码中使用:

StoredProcName.ExecuteScalar()

这将返回您在存储过程中选择的单个整数。

Here's a simple way to do it:

In the stored procedure, instead of using RETURN, use SELECT like this:

SELECT @@ROWCOUNT 

or

SELECT @TheIntegerIWantToReturn

Then in the code use:

StoredProcName.ExecuteScalar()

This will return the single integer you SELECTED in your stored procedure.

百合的盛世恋 2024-08-09 03:46:48
CREATE PROCEDURE  [dbo].[GetReturnValue]    
     @myVariable varchar(50)
     @myReturn BIGINT OUTPUT
AS
    declare @myReturn int
BEGIN
    set @myReturn = 5;
    return @myReturn;   
END
CREATE PROCEDURE  [dbo].[GetReturnValue]    
     @myVariable varchar(50)
     @myReturn BIGINT OUTPUT
AS
    declare @myReturn int
BEGIN
    set @myReturn = 5;
    return @myReturn;   
END
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文