本文介绍了更新查询成功后如何获取Back消息?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我有一个表格,其中包含客户信息和一些订单信息 当用户更改某些内容时 并按更新 两个单独的功能调用 updclient(); updorder(); i只想显示一个消息框显示更新成功 有没有办法检查两个更新状态并只显示一个MessageBox? 目前我正在使用这种方法 updorder () int a = adapter.InsertCommand.ExecuteNonQuery(); cmd.Connection.Close(); if (a == updatecheck) { stmessage.Text = 更新成功......; } updclient() SqlDataAdapter adapter = new SqlDataAdapter(); adapter.InsertCommand = cmd; updatecheck = adapter.InsertCommand.ExecuteNonQuery(); // updatechecked Globle veriale cmd.Connection。关闭(); 第一个updclient()调用哪个fill updatecheck变量带有返回值 second updorder()调用用updatecheck检查了他的一个变量vertable 解决方案 对于 UPDATE,INSERT和DELETE 语句,返回值是受影响的行数命令 因此你应该在方法中插入相等的行数,那么只有条件才会满足。 i have a Form that has Client Information and some Order Information when user Change some thing and press Update two separate Function called updclient();updorder();i want to show only one Message Box showing that "update Successfull"is there any way to check both updates status and show only one MessageBox ?Currently i am using this method updorder()int a=adapter.InsertCommand.ExecuteNonQuery(); cmd.Connection.Close(); if (a == updatecheck) { stmessage.Text = "Update Successfull..."; }updclient()SqlDataAdapter adapter = new SqlDataAdapter(); adapter.InsertCommand = cmd; updatecheck = adapter.InsertCommand.ExecuteNonQuery();//updatechecked is Globle veriale cmd.Connection.Close();first updclient() called which fill updatecheck variable with return valuesecond updorder() called which checked his a variable with updatecheck veriable 解决方案 这篇关于更新查询成功后如何获取Back消息?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-16 00:33