我正在使用 excel 将数据输入到 Access 数据库中,并且我的一些数据字符串包含用于测量的撇号。
这是我的 SQL 输入字符串
stSQL = "INSERT INTO Products (ProductName, ProductDescription, ProductUnit, SupplierID) " & _
"Values ('" & cboxItemNum & "', '" & txtDescription & "', '" & txtUnit & "', " & linkPID & ")"
cn.Execute (stSQL)
我的字符串如下:
Aliplast 4E 白色。30" X 80' X 1/4" 柔软。
在这个字符串中,80 之后的 ' 导致错误,我不知道如何解决这个问题。我不能只告诉用户不要输入撇号。我怎样才能解决这个问题?
谢谢