C# datagridview绑定数据库 显示重复 50

stringconnString="server=USER-THD9UNL9EE;InitialCatalog=我的图书管理系统;IntegratedSecurity=t... string connString = "server=USER-THD9UNL9EE;Initial Catalog=我的图书管理系统;Integrated Security=true;Persist Security Info=False";
SqlConnection conn = new SqlConnection(connString);
conn.Open();
//连接数据库
SqlCommand cmd2 = new SqlCommand("select count(*) from ub where 用户名='" + txt用户名.Text + "'", conn);
int i = int.Parse(cmd2.ExecuteScalar().ToString());
txt已借数量.Text = i.ToString();
int s = 5 - i;
txt可借数量.Text = s.ToString();
string strqueren = "select count(*) from [ub] where 用户名 = '" + txt用户名.Text + "' and ISBN号 = '" + txt所选图书.Text + "'";
SqlCommand cmd4 = new SqlCommand(strqueren, conn);
int count = int.Parse(cmd4.ExecuteScalar().ToString());
if (count > 0)
{ MessageBox.Show("请正确选择书籍!"); }
else if (i > 4)
{
MessageBox.Show("已借满5本书!不能再借。");
}
else
{
string insert = "insert into [ub] (用户名,ISBN号) values ('" + txt用户名.Text + "','" + txt所选图书.Text + "')";
string upda = "update book set 是否借出 = '" + 1 + "' where ISBN号 = '" + txt所选图书.Text + "'";
SqlCommand cmd = new SqlCommand(insert, conn);
SqlCommand cmd3 = new SqlCommand(upda, conn);
cmd3.ExecuteNonQuery();
int rows = cmd.ExecuteNonQuery();
if (rows > 0)
{
MessageBox.Show("借书成功");
i = i + 1;
txt已借数量.Text = i.ToString();
s = 5 - i;
txt可借数量.Text = s.ToString();

}
}
this.btn刷新_Click(this, null);
this.btn显示全部_Click(this, null);
}

}

用户登录后,已借书籍那里显示重复的两行,还有借书时,已借书籍那里也显示重复的两行,下面的可借书籍显示正常,百度有字数限制,代码就占了一部分,谁会啊……帮我看看吧……
展开
 我来答
百度网友ce7f3ccb4
2015-05-11 · TA获得超过1950个赞
知道大有可为答主
回答量:2299
采纳率:0%
帮助的人:1912万
展开全部
你在新刷线的时候要移除原有数据啊!!
clear掉
你调试看看,是不是你自己重复添加了!!
追问
具体要怎么弄啊……
txt已借书籍.Text = dataGridView1.SelectedCells[0].Value.ToString();
这个是已借书籍的 dataGridView1_CellClick的程序,实在不知道为什么上面一借书,就显示两行一样的信息。
追答
this.btn刷新_Click(this, null);
this.btn显示全部_Click(this, null);
这个里面是不add了两次啊!!
贴上这个连个按钮的代码吧!!我都不知道你是怎么添加数据的!!
让我猜估计我也猜不到的!!
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2015-05-10
展开全部
没看到你的datagridview绑定数据源的那部分代码,不好判断
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式