C#查询ACCESS数据库 这是窗体的代码

usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Da... using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Data.OleDb; using System.IO; namespace 鞋店信息管理系统 { public partial class Form1 : Form { private DataSet dsnew; private OleDbCommand command = new OleDbCommand(); private OleDbConnection connection; private OleDbDataAdapter adapter; private DataTable thetable = new DataTable(); public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { // TODO: 这行代码将数据加载到表“mdb1DataSet.inf”中。您可以根据需要移动或移除它。 this.infTableAdapter.Fill(this.mdb1DataSet.inf); } private void button1_Click(object sender, EventArgs e) { string con = "Select * from inf where num= '" + textBox1.Text + "'"; connection = new OleDbConnection(); connection.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source= E:\\0915070241苏莹\\鞋店信息管理系统\\mdb1.mdb"; connection.Open(); command.Connection = connection; command.CommandType = CommandType.Text; command.CommandText = con; adapter = new OleDbDataAdapter("Select * From inf", connection); adapter.SelectCommand = command; dsnew = new DataSet(); adapter.Fill(dsnew, "mdb1"); thetable = dsnew.Tables["mdb1"]; dataGridView1.DataSource = thetable; } } } 点击查询之后出现这个错误提示 请高手帮助啊~~ 展开
 我来答
藏永澄夏云
2019-10-14 · TA获得超过3814个赞
知道大有可为答主
回答量:3133
采纳率:31%
帮助的人:160万
展开全部
订购TextBox的LostFocus事件,在事件方法中,取得TextBox的文本,然后修改数据库值
SQL语句应该没问题吧?
update
mytable
set
name
=
'新的文本'
where
id
=
001
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式