C#怎样将dataGridView中数据存入数据库啊? 5
for(inti=0;i<this.dataGridView1.RowCount;i++){this.dataGridView1.Rows[i].Cells[6].Val...
for (int i = 0; i < this.dataGridView1.RowCount; i++)
{
this.dataGridView1.Rows[i].Cells[6].Value = "未定位";
string id0 = this.dataGridView1.Rows[i].Cells[0].Value.ToString();
string addr0 = this.dataGridView1.Rows[i].Cells[1].Value.ToString();
string gas0 = this.dataGridView1.Rows[i].Cells[2].Value.ToString();
string chr0 = this.dataGridView1.Rows[i].Cells[3].Value.ToString();
string uin0 = this.dataGridView1.Rows[i].Cells[4].Value.ToString();
string sta0 = this.dataGridView1.Rows[i].Cells[5].Value.ToString();
string pos0 = this.dataGridView1.Rows[i].Cells[6].Value.ToString();
string tim0 = this.dataGridView1.Rows[i].Cells[7].Value.ToString();
string str0 = string.Format("insert into TABLE2 values('{0}','{1}','{2}','{3}','{4}','{5}','{6}','{7}')", id0, addr0, gas0, chr0, uin0, sta0, pos0, tim0);
SqlCommand cmd0 = new SqlCommand(str0);
cmd0.Connection = con;
SqlDataReader reader0 = cmd0.ExecuteReader();;
}
我这样写为什么只能存入9行再多了就不存了,请各位指导啊 展开
{
this.dataGridView1.Rows[i].Cells[6].Value = "未定位";
string id0 = this.dataGridView1.Rows[i].Cells[0].Value.ToString();
string addr0 = this.dataGridView1.Rows[i].Cells[1].Value.ToString();
string gas0 = this.dataGridView1.Rows[i].Cells[2].Value.ToString();
string chr0 = this.dataGridView1.Rows[i].Cells[3].Value.ToString();
string uin0 = this.dataGridView1.Rows[i].Cells[4].Value.ToString();
string sta0 = this.dataGridView1.Rows[i].Cells[5].Value.ToString();
string pos0 = this.dataGridView1.Rows[i].Cells[6].Value.ToString();
string tim0 = this.dataGridView1.Rows[i].Cells[7].Value.ToString();
string str0 = string.Format("insert into TABLE2 values('{0}','{1}','{2}','{3}','{4}','{5}','{6}','{7}')", id0, addr0, gas0, chr0, uin0, sta0, pos0, tim0);
SqlCommand cmd0 = new SqlCommand(str0);
cmd0.Connection = con;
SqlDataReader reader0 = cmd0.ExecuteReader();;
}
我这样写为什么只能存入9行再多了就不存了,请各位指导啊 展开
6个回答
展开全部
估计是 dataGridView 这个分页了吧 他只是会这一页的数据 循环dataGridView的数据源吧 这样没什么问题了
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看下你this.dataGridView1.RowCount的值是多少,是不是9
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用sqldataadapter会快点吧。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你就录九行吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
估计是Rowcount只有9,另外不建议在循环里面直接执行sql插入
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |