在c#如何将listview中的数据保存到数据库中的表中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在c#如何将listview中的数据保存到数据库中的表中相关的知识,希望对你有一定的参考价值。
感激
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语句。就可以了 思路大概是这样的,希望你帮助你~ 参考技术A Ctrl+C
Ctrl+V
以上是关于在c#如何将listview中的数据保存到数据库中的表中的主要内容,如果未能解决你的问题,请参考以下文章