我使用微软访问创建了数据库。从这个数据库,我只能读取数据,不能添加新的条目,
我使用下面的代码插入数据
cmd = new OleDbCommand("insert into [Accountstbl] values(" + textBox1.Text +
",' " + textBox6.Text + " ',' " + textBox3.Text + " ')", cn);
但是当我点击确定时,表单只是变为没有响应并且没有在数据库中插入任何数据,我知道我的路径是正确的,因为我可以读取数据,
你可以给我一个关于这个的指南吗?找不到任何东西:( 感谢,答案 0 :(得分:1)
缺少第一个文本框的单引号(textBox1.Text)?
尝试下面一个
cmd = new OleDbCommand("insert into [Accountstbl] values('" + textBox1.Text +
"',' " + textBox6.Text + " ',' " + textBox3.Text + " ')", cn);
并尝试将下面的代码放在你怀疑它出错的地方
try
{
//Insertion code here, .............Query,ExcuteNonQuery,.....etc
}
catch(Exception ex)
{
MessageBox.Show(ex.ToString());//You will get here what problem is there.....
}
答案 1 :(得分:0)
尝试:
cmd = new OleDbCommand("insert into [Accountstbl] (field1, field2, field3) values(" + textBox1.Text + ",' " + textBox6.Text + " ',' " + textBox3.Text + " ')", cn);
将字段#替换为数据库中的字段。