使用C#向ACCESS中插入数据(仅供参考)
Posted Beyondづ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用C#向ACCESS中插入数据(仅供参考)相关的知识,希望对你有一定的参考价值。
1.创建并打开一个OleDbConnection对象
string strConn = " Provider = Microsoft.Jet.OLEDB.4.0 ; Data Source = sample.mdb " ;
OleDbConnection myConn = new OleDbConnection ( strCon ) ;
myConn.Open ( ) ;
2.创建插入的SQL语句
string strInsert = " INSERT INTO books ( bookid , booktitle , bookauthor , bookprice , bookstock ) VALUES ( " ;
strInsert += t_bookid.Text + ", ‘" ;
strInsert += t_booktitle.Text + "‘, ‘" ;
strInsert += t_bookauthor.Text + "‘, " ;
strInsert += t_bookprice.Text + ", " ;
strInsert += t_bookstock.Text + ")" ;
3.创建一个OleDbCommand对象
OleDbCommand inst = new OleDbCommand ( strInsert , myConn ) ;
4.使用OleDbCommand对象来插入数据
inst.ExecuteNonQuery ( ) ;
5.关闭OleDbConnection
myConn.Close ( ) ;
注:使用access数据库时 需要在插入数据时标明要插入数据对应的字段名!
以上是关于使用C#向ACCESS中插入数据(仅供参考)的主要内容,如果未能解决你的问题,请参考以下文章
使用 C# windows 窗体向 Ms Access 数据库插入新记录时出现语法错误
C# 向Access数据库插入数据时提示INSERT INTO语法错误
我无法使用 C# 添加数据以访问 2007,任何人都可以帮助我吗?