Number of query values and destination fields are not the same explanation:
Below is an example of how it works:
'## SQL
strSql = "INSERT INTO "
strSql = strSql & "TABLENAME "
strSql = strSql & "(FIELD_1"
strSql = strSql & ", FIELD_2"
strSql = strSql & ", FIELD_3"
strSql = strSql & ") "
strSql = strSql & " VALUES ("
strSql = strSql & ", " & "'" & value_1 & "'"
strSql = strSql & ", " & "'" & value_2 & "'"
strSql = strSql & ", " & "'" & value_3 & "'"
strSql = strSql & ")"
The error you get appears if a value or field is missing (maybe you've added a field when installing a MOD but did not add the value (or otherwise)). Also be sure that the order of fields and values is the same.
Hope that helps.
-------------------------------------------------
Installation Guide | Do's and Dont's | MODs