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

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

以下代碼中的id=" + id是什么意思?看不明白!

以下代碼中的id=" + id是什么意思?看不明白!

忽然笑 2021-12-02 11:07:53
private void cmdDelete(GridView g1,GridViewDeleteEventArgs e){string id = g1.DataKeys[e.RowIndex].Value.ToString();string SqlStr = "delete from PersonInfo where id=" + id;using (SqlConnection conn = new SqlConnection(ConnStr)){SqlCommand cmd = new SqlCommand(SqlStr, conn);try{conn.Open();int iValue = cmd.ExecuteNonQuery();if (iValue > 0){cmd.CommandText = "Select * from PersonInfo";SqlDataReader dr = cmd.ExecuteReader();this.GridView1.Caption = "人員信息表";this.GridView1.DataSource = dr;this.GridView1.DataBind();}}
查看完整描述

3 回答

?
元芳怎么了

TA貢獻(xiàn)1798條經(jīng)驗(yàn) 獲得超7個贊

string sqlStr = "delete from PersonInfo where id=" + id;
中的外面的id是引號里面id的參數(shù),也就是說假設(shè)id=3,那么此時string sqlStr=“delete from PersonInfo where id=3”,那么在執(zhí)行這條語句的時候就會將表PersonInfo表中id為3的那條記錄刪掉。外面的id是變量,要傳入sql語句中的值,引號里面的id是PersonInfo表中名字為id的那個字段或者叫列

查看完整回答
反對 回復(fù) 2021-12-06
?
胡說叔叔

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超8個贊

string id = g1.DataKeys[e.RowIndex].Value.ToString(); //獲取 GridView DataKeys 屬性的值(當(dāng)前選中的)
string SqlStr = "delete from PersonInfo where id=" + id; // sql 語句 字符串拼接(就是刪除語句, 你可以打個斷點(diǎn)停住 看看是什么 你就知道了);

using (SqlConnection conn = new SqlConnection(ConnStr))
{// 以下是查詢了, 把修改后的數(shù)據(jù) 從新從數(shù)據(jù)庫里讀出來 在顯示
SqlCommand cmd = new SqlCommand(SqlStr, conn);
try
{
conn.Open();
int iValue = cmd.ExecuteNonQuery();
if (iValue > 0)
{
cmd.CommandText = "Select * from PersonInfo";
SqlDataReader dr = cmd.ExecuteReader();
this.GridView1.Caption = "人員信息表";
this.GridView1.DataSource = dr;
this.GridView1.DataBind();
}
}



查看完整回答
反對 回復(fù) 2021-12-06
?
慕的地8271018

TA貢獻(xiàn)1796條經(jīng)驗(yàn) 獲得超4個贊

string id = "abc";
string sqlStr = "delete from xxx where id = " + id
此時
sqlStr = "delete .... where id = abc"
就是拼接字符串而已

查看完整回答
反對 回復(fù) 2021-12-06
  • 3 回答
  • 0 關(guān)注
  • 610 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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