1

我想为时已晚,我太累了,看不到自己做错了什么。这是我正在尝试的:

int imageId = imageDal.AddImage(new SqlParameter[]
        {
            new SqlParameter("@IMAGE_ID", 
        SqlDbType.Int, Int32.MaxValue, ParameterDirection.Output,
        true, 0, 0,"IMAGE_ID", DataRowVersion.Current,DBNull.Value),

        new SqlParameter("@IMAGE", 
        SqlDbType.Image, 11, ParameterDirection.Input,
        true, 0, 0,"IMAGE", DataRowVersion.Current,image)
        });

public int AddImage(SqlParameter[] spParams)
{
    SqlHelper.ExecuteNonQuery(BaseDAL.ConnectionStringImages, INSERT_IMAGE_SQL, spParams);
    return Convert.ToInt32(spParams[0].Value);
}

存储过程:

[dbo].[sp_insert_image]
    -- Add the parameters for the stored procedure here
    @IMAGE_ID int OUT,
    @IMAGE image
AS
BEGIN
    INSERT INTO images
    (IMAGE)
    VALUES
    (@IMAGE)
    SELECT @IMAGE_ID = SCOPE_IDENTITY();
END
GO

我得到 DBNull 作为 spParams[0].Value。我已经尝试在我的存储过程中将@IMAGE_ID 的值设置为一个常量,但它没有改变任何东西,所以问题不在于我的存储过程(这就是我的想法)。

当我从 sql management studio 执行该过程时,我看到 insert_id 返回..

4

3 回答 3

2

我最终得到了 executescalar 并SCOPE_IDENTITY()直接从 SP 返回。

如果有另一种方法可以从 sql 参数中获取值,我很想听听。

于 2011-02-07T07:54:04.767 回答
1

我想,问题出在ExecuteNonQuery方法中。它返回对象数组,而不是 sqlparam 的数组。

只需在输出 sqlparam 对象上有一个 ref 并从该 ref 获取值。

祝你好运!

PS还有另一种解决方案。检查链接

http://www.dotnetmonster.com/Uwe/Forum.aspx/dotnet-distributed-apps/160/Data-Access-Application-Block-Output-Parameters

于 2011-02-07T08:14:42.047 回答
0

你把这样的....

[dbo].[sp_insert_image]
    -- Add the parameters for the stored procedure here
    @IMAGE_ID int OUT,
    @IMAGE image
AS
BEGIN
    INSERT INTO images (IMAGE) VALUES (@IMAGE)
    SET @IMAGE_ID  = SCOPE_IDENTITY();
END
GO
于 2015-07-17T10:22:38.120 回答