hi
I am getting an error :
on execute statement ! :
error is :
Microsoft OLE DB Provider for SQL Server error '80040e14'
Incorrect syntax near ','.
--------------------------------
this is the statement :
any help would be much appreciated .
Thanks
I am getting an error :
on execute statement ! :
error is :
Microsoft OLE DB Provider for SQL Server error '80040e14'
Incorrect syntax near ','.
--------------------------------
this is the statement :
Code:
sql = "insert into requirements (message, priority,server, ip, usr, creationTime, modificationTime, Title, deleted, " &_
"EventName, PriorityComm, Service, CallRef, Description, DateTimeIncident, BusinessImpact, NextSteps) values " &_
"('" & strData & "', " & priority & ", '" & ip & "', '" & usr & "', GetDate(), GetDate(),'" & title & "','" & eventName & "') " &_
"('" & priorityComm & "','" & service & "','" & callRef & "','" & description & "', GetDateTime(),'" & businessImpact & "','" & nextSteps & "') "
DbObj.Execute(SQL)
on error resume next
any help would be much appreciated .
Thanks
Comment