在c#如何将listview中的数据保存到数据库中的表中

感激
2024-12-20 20:36:10
推荐回答(2个)
回答1:

private void listView1_Click(object sender, EventArgs e)//listview点击事件
{
if (this.listView1.SelectedItems == null) return;
ListViewItem item = this.listView1.SelectedItems[0];//选中的ltem

if (this.comboBox1.SelectedIndex == -1) return;
if (item == null) return;

//把每一项里的值取出来
string a = item.SubItems[0].Text.ToString();
string b = item.SubItems[1].Text.ToString();
string c = item.SubItems[2].Text.ToString();
string d = item.SubItems[3].Text.ToString();
}
然后你用ADO连接数据库,写insert语句,把取出来的值当参数传给SQL语句。就可以了 思路大概是这样的,希望你帮助你~

回答2:

Ctrl+C
Ctrl+V