第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何從 ASP.NET 中的 Mysql 存儲(chǔ)過(guò)程調(diào)用輸出參數(shù)

如何從 ASP.NET 中的 Mysql 存儲(chǔ)過(guò)程調(diào)用輸出參數(shù)

C#
拉丁的傳說(shuō) 2023-07-22 16:37:35
我在將輸出參數(shù)從 Mysql 存儲(chǔ)過(guò)程返回到 ASP.NET 變量時(shí)遇到問(wèn)題。我只想在 ASP 中使用 ligne 代碼來(lái)獲取該參數(shù)!謝謝
查看完整描述

1 回答

?
慕田峪7331174

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超13個(gè)贊

假設(shè)有一個(gè)名為“MyOutParam”的參數(shù),它是outputMySQL 存儲(chǔ)過(guò)程的一種參數(shù)類型。在這種情況下,你需要做的是:


// 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;


查看完整回答
反對(duì) 回復(fù) 2023-07-22
  • 1 回答
  • 0 關(guān)注
  • 134 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)