Hmmm... that means that the list of parameters in your insert statement doesn't match the parameters.
 
Something like this:
 
INSERT INTO table (Parameter1, Parameter2, Parameter3) VALUES (Value1, Value2, Value3, Value4)
 
... the # of values doesn't match the # of parameters.