我有以下SQL Server存储过程(声明的参数丢失,但我没有问题):
DECLARE @TotalRegistros AS INT = 0
DECLARE @ShowMsg AS NVARCHAR(50)
SELECT @TotalRegistros = COUNT(*)
FROM Tbl_Productos
WHERE IdProducto = @Producto
IF @TotalRegistros < 3
BEGIN
INSERT INTO Tbl_Productos (IdProducto, UnidadMedida, Precio, Activo)
VALUES (@Producto, @Medida, @Precio, @Activo)
SET @ShowMsg = 'All fine!'
END
ELSE
BEGIN
SET @ShowMsg = 'Error, you already have 3 rows.!'
END
SELECT @ShowMsg
我用这个C#代码执行这个存储过程:
public string ExecuteSP(Producto prod)
{
int res = 0;
string resp = "";
SqlCommand cmd = new SqlCommand("SPName", conn);
try
{
Open();
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@Producto", prod.Id);
cmd.Parameters.AddWithValue("@Medida", prod.Tipo);
cmd.Parameters.AddWithValue("@Precio", prod.Precio);
cmd.Parameters.AddWithValue("@Activo", prod.Active);
//CodeUpdated
SqlParameter returnMessage = new SqlParameter("@ShowMsg", SqlDbType.NVarChar);
returnMessage.Direction = ParameterDirection.ReturnValue;
cmd.Parameters.Add(returnMessage);
res = cmd.ExecuteNonQuery();
resp = returnMessage.Value.ToString();
}
finally
{
Close();
}
return resp;
}
我知道我需要添加OutputParameter
之类的内容并添加@ShowMsg
,但我不知道该怎么做!主要问题是我使用以下代码从 WebMethod 执行此代码:
[WebMethod]
public string ExecuteC#Code(int id, string medida, string precio, string activo)
{
string respuesta = "Error";
try
{
Producto prod = new Producto(id, medida, precio, activo);
//Code updated
string resp = conn.ExecuteSP(prod);
if (resp == "All fine!")
respuesta = "Operacion realizada existosamente";
else
respuesta = "Already 3 rows with same Id..."
}
catch (Exception ex)
{
respuesta = "A ocurrido un error: " + ex.Message;
}
return respuesta;
}
就像我说的那样,我知道在执行存储过程之后我需要做些什么来获取消息,但是我不知道如何将该消息发送到我的web方法。我知道我需要更改我的方法的数据类型,因为我希望string
而不是int
。
答案 0 :(得分:-1)
您应该使用SQL Server标量函数:
CREATE FUNCTION [dbo].[GetUserNameByID](@UserID int)
RETURNS nvarchar(max)
AS
BEGIN
DECLARE @UserName nvarchar(max);
SET @UserName = (SELECT TOP (1) [Login]
FROM [dbo].[Users]
WHERE ID = @UserID)
RETURN @UserName
END
答案 1 :(得分:-1)
解决!这是我从我的代码中修改的内容:
存储过程:
Declare @ShowMsg as nvarchar(50) TO Declare @ShowMsg as int
set @ShowMsg = a number (10, 20, whatever)
C#代码:
public string ExecuteSP(Producto prod) TO public int ExecuteSP(Producto prod)
SqlParameter returnMessage = new SqlParameter("@ShowMsg", SqlDbType.NVarChar);
到
SqlParameter returnMessage = new SqlParameter("@ShowMsg", SqlDbType.Int);
resp = returnMessage.Value.ToString(); to Convert.ToInt32(resp = returnMessage.Value);
的WebMethod:
string resp = conn.ExecuteSP(prod); TO int resp = conn.ExecuteSP(prod);
最后
if (resp == "All fine!")
respuesta = "Operacion realizada existosamente";
else
respuesta = "Already 3 rows with same Id..."
要
if (resp == 10)
respuesta = "Operacion realizada existosamente";
else if (resp == 5)
respuesta = "Already 3 rows with same Id...";