0

我正在使用以下代码将数据保存到 MS-Access 2007 表中。但它抛出如下表达式:

{"Syntax error (missing operator) in query expression '0','0','0','0','0','0','0','0')'."}

我附上了下面的代码:

cmd.CommandText = "INSERT INTO Daily_EB_Consumption (EB_S1, EB_S2, EB_S3, EB_S4, EB_S5, EB_Indus, EB_LH, EB_Total, EB_Date) " & _
    " VALUES(" & Me.txt_S1.Text & "','" & _
      Me.txt_S2.Text & "','" & Me.txt_S3.Text & "','" & Me.txt_S4.Text & "','" & _
      Me.txt_S5.Text & "','" & Me.txt_Indus.Text & "','" & Me.txt_LH.Text & "','" & _
      Me.txt_Total.Text & "','" & Me.dt_EB.Value & "')"       

请任何人帮助解决此错误

4

1 回答 1

1

您使用了撇号,但仅在右侧使用。您必须将值包装在撇号中:

VALUES('" & Me.txt_S1.Text & "', ...

但是你对 SQL 注入开放,所以你应该使用参数。

使用参数将数据插入访问数据库

于 2013-07-08T07:57:26.513 回答