ORA-00917:VB中缺少逗号错误

时间:2013-07-17 11:14:27

标签: sql database excel vba odbc

在尝试写入数据库时​​,尝试在Excel中使用某些VB代码时遇到了很多麻烦。我一直得到这个逗号错误,但我不能为我的生活看到逗号丢失的地方......这是代码......

While Not IsEmpty(startRange.Offset(i, 0))

    tentype = startRange.Offset(i, 0).Value
    tendelivery = "EMAIL"
    tenevent = startRange.Offset(i, 1).Value
    tentext = startRange.Offset(i, 2).Value
    tensubject = startRange.Offset(i, 3).Value
    tentrailer = startRange.Offset(i, 4).Value
    tenlanguage = startRange.Offset(i, 5).Value
    tenid = 10 + i




With objCommand
.ActiveConnection = "Driver={Microsoft ODBC for Oracle};Server=*;Uid=*;Pwd=*"
.CommandText = "INSERT INTO TEN_TEMPLATE VALUES (" & tenid & ", " & tendelivery & ", " & tentype & ", " & tenevent & ", " & tentext & ", " & tenlanguage & ", " & tensubject & ", " & tentrailer & ")"
.Execute

End With

    i = i + 1
Wend

我非常感谢任何帮助。

谢谢, 布雷特

1 个答案:

答案 0 :(得分:1)

您的某个值是否有嵌入的逗号,或者更有可能是引号?即使你的建筑物看起来很好,这也可能搞砸了生成的SQL字符串。