strSqla="Insert Into liuyan(name"
strSqlb="Values('"& name &"'"
strSqla=strSqla & ",title"
strSqlb=strSqlb & ",'"& title &"'"
If body<>"" Then
strSqla=strSqla &",body"
strSqlb=strSqlb &",'"& body &"'"
End If
If emial<>"" Then
strSqla=strSqla &",email"
strSqlb=strSqlb &",'"& email &"'"
End If
strSqla=strSqla & ",submit_date"
strSqlb=strSqlb & ",'"& date &"'"
strSql=strSqla &")"& strSqlb &")"
db.Execute(strSql)
db.Close
就是这段代码:错误显示的是db.Execute(strSql)错误,不可更新的操作.