本文介绍了在access数据库中更新查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
嘿,伙计们,我为更新数据库编写代码但是不能更新数据库如何解决这个问题请告诉我...! !!
我使用Microsoft Access数据库。
我的代码是
cmd = new OleDbCommand( 更新[hoddo] set [hoddo] = [@ lk ] [ID] = [@ id],con);
cmd.Parameters.AddWithValue( @ id,dgrow);
cmd.Parameters.AddWithValue( @ lk,textBox1.Text);
cmd.ExecuteNonQuery();
解决方案
hey Guys,
I write code for update database but it can''t be update the database how to solve this problem tell me please...!!!
I use the Microsoft Access database.
My code is
cmd = new OleDbCommand("Update [hoddo] set [hoddo]=[@lk] where [ID]=[@id]", con); cmd.Parameters.AddWithValue("@id", dgrow); cmd.Parameters.AddWithValue("@lk", textBox1.Text); cmd.ExecuteNonQuery();
解决方案
这篇关于在access数据库中更新查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!