为了账号安全,请及时绑定邮箱和手机立即绑定

如何从 ASP.NET 中的 Mysql 存储过程调用输出参数

如何从 ASP.NET 中的 Mysql 存储过程调用输出参数

C#
拉丁的传说 2023-07-22 16:37:35
我在将输出参数从 Mysql 存储过程返回到 ASP.NET 变量时遇到问题。我只想在 ASP 中使用 ligne 代码来获取该参数!谢谢
查看完整描述

1 回答

?
慕田峪7331174

TA贡献1828条经验 获得超13个赞

假设有一个名为“MyOutParam”的参数,它是outputMySQL 存储过程的一种参数类型。在这种情况下,你需要做的是:


// here goes the logic of instantiating the command for a stored procedure


// cmd is the reference variable containing instance of SQLCommand

cmd.Parameters.Add(new MySqlParameter(“MyOutParam”, MySqlDbType.VarChar));

cmd.Parameters[“MyOutParam”].Direction = ParameterDirection.Output;         // this is how we declare the parameter to be of 'output' type.


cmd.ExecuteNonQuery();


// this is how we can get the value in the output parameter after stored proc has executed

var outParamValue = cmd.Parameters[“MyOutParam”].Value;


查看完整回答
反对 回复 2023-07-22
  • 1 回答
  • 0 关注
  • 99 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信