我有一个强类型数据集,它使用 DBDirectMethods 通过调用存储过程将数据插入数据库。存储过程返回新创建记录的主键。这是一个示例存储过程:
CREATE PROCEDURE dbo.CreateUser
(
@UserName VARCHAR(50)
@Password VARCHAR(50)
)
AS
SET NOCOUNT OFF
DECLARE @UserID INT
BEGIN TRANSACTION
INSERT INTO dbo.Users (UserName, Password) VALUES (@UserName, @Password)
SET @UserID = SCOPE_IDENTITY()
INSERT INTO dbo.Users_History (UserID, Status, TimeStamp) VALUES (@UserID, 'C', GETUTCDATE())
COMMIT TRANSACTION
RETURN @UserID
GO
如果我从 SSMS 执行存储过程,则会创建用户帐户、更新历史记录表并返回主键。如果我使用强类型数据集运行我的应用程序并让 SQL Profiler 运行,我可以看到相同的代码正在执行;但是,数据集返回 -1 作为主键并破坏应用程序。
在 VS 生成的表适配器代码中,相关行是:
this._adapter.InsertCommand.CommandText = "dbo.CreateUser";
this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.StoredProcedure;
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@UserName", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, "UserName", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Password", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, "Password", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
和
try {
int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
return returnValue;
}
finally {
if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
this.Adapter.InsertCommand.Connection.Close();
}
}
这只是 VS 通常生成的标准样板代码 - 没有任何内容是手动编辑的。它只是没有获取返回值。
我正在运行带有 SQL 2008 R2 SP1 Express 的 Windows 7。