前辈请进来指点一下
我是用VB。NET与ACEESS数据库做的表纪录修改的代码我这样写好像错了,帮帮忙,怎么写
还有就是我做的系统,表单的添加纪录后,不会马上表单上出现,要下次再运行才能看见新增加的纪录,怎么解决这个问题,刷新数据库行吗,代码怎么写
Dim sq6 As String
sq6 = "replace 货物编号 with '" & hb.Text & "',货物名称 with '" & hm.Text & "',出库时间 with '" & sj.Text & "',价格 with '" & jg.Text & "',出库数量 with '" & rksl.Text & "' ,经办人 with '" & jbr.Text & "',库存数量 with '" & kcsl.Text & "'"
ado = New OleDbDataAdapter(sq6, "provider=microsoft.jet.oledb.4.0;data source =F:\程序\毕业设计\db1.mdb")
ado.Fill(ds)
MsgBox("保存记录成功")