MacDaddyNickP
Programmer
I have a dynamic SQL statement which appends a record to a local Access table. This is the statement:
INSERT INTO tbl_Scoring_Results (DPS_Num, Svc_Request_Status_Date, Company, City, State, Overall_Score, Communication_Score, Professionalism_Score, Expertise_Score, On_Time_Score, Dell_Score) VALUES (strDPS_NUM, datSvcReqStatusDate, strCompany, strCity, strState, intOverall, intCommunication, intExpertise, intProfessionalism, intOnTime, intDell);
When this executes, I get an error:
3601 Too Few Parameters (expected 11)
What's going on?
INSERT INTO tbl_Scoring_Results (DPS_Num, Svc_Request_Status_Date, Company, City, State, Overall_Score, Communication_Score, Professionalism_Score, Expertise_Score, On_Time_Score, Dell_Score) VALUES (strDPS_NUM, datSvcReqStatusDate, strCompany, strCity, strState, intOverall, intCommunication, intExpertise, intProfessionalism, intOnTime, intDell);
When this executes, I get an error:
3601 Too Few Parameters (expected 11)
What's going on?