使用OleDbDataAdapter插入Access数据库

时间:2009-12-08 08:09:38

标签: c# ms-access oledbdataadapter

我想将一些数据插入Access数据库。

DataTable dt = new DataTable();
String sql = string.Format("SELECT * FROM {0} where 1=0; ", tmap.SqlTableName);
string con = string.Format(conn, accessPath);
OleDbDataAdapter da = new OleDbDataAdapter(sql, con);
OleDbCommandBuilder cmdBuilder = new OleDbCommandBuilder(da);
da.InsertCommand = cmdBuilder.GetInsertCommand(true); // Returns "INSERT INTO test (int, bdate, amt, text, bit) VALUES (?, ?, ?, ?, ?)"
da.Fill(dt);
//Add data to the DateTable
for (int i = 0; i < rowCount; i++)
{
DataRow dr = dt.NewRow();
//....
dt.Rows.Add(dr);
}
da.Update(dt); //This is where things go south.

System.Data.OleDb.OleDbException
消息:INSERT INTO语句中的语法错误 资料来源:Microsoft JET数据库引擎。

如果我更改了insert命令:

da.InsertCommand = new OleDbCommand("INSERT INTO test ([text]) VALUES (?)");  

并将传入的数据更改为只有一个文本值:

没有给出一个或多个必需参数的值。

我错过了什么吗?

2 个答案:

答案 0 :(得分:1)

问题出在数据类型中。如果数据类型兼容,问题中的代码将起作用。

答案 1 :(得分:0)

  1. 确保插入查询中包含所有必需的列。
  2. 如果它不起作用,则创建一个新的插入方法,然后按照以下步骤操作:

    OleDbConnection conn = new OleDbConnection(connectionString);

    OleDbCommand command = new OleDbCommand();
    command.Connection = conn;
    command.CommandText= "INSERT INTO myTable (col1, col2) VALUES (@p_col1, @p_col2)";
    command.Parameters.Add ("@p_col1", OleDbType.String).Value = textBox1.Text;
    ...
    command.ExecuteNonQUery();