but the field in the db (sql server 2005) is not an int filed. It is nvarchar(MAX)
Main Topics
Browse All TopicsI'm trying to insert answers from a form. The fields were generated dynamically. Why am I getting this error?
<cfloop list="#form['QuizQuestion'
<cfquery name="addParticipantDetail
INSERT INTO tblQuizParticipantDetails
(ParticipantID
,QuizQuestionID
,QuizParticipantAnswer
)
VALUES
(
<CFQUERYPARAM Value="#addParticipant.Par
<CFQUERYPARAM Value="#QuizQuestionID#">,
<CFQUERYPARAM cfsqltype="cf_sql_varchar"
)
</cfquery>
</cfloop>
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Shawnaraxi,
Can you post the DDL for creating the table so that we can see what the Table Definition is?
Also, look at the following line:
<CFQUERYPARAM cfsqltype="cf_sql_varchar"
Is it possible that there is an implicit conversion involved in that line?
after testing without the variables it turns out the variables are not giving as expected.
these are both giving the actual answers in the form
<CFQUERYPARAM Value="#QuizQuestionID#">,
<CFQUERYPARAM cfsqltype="cf_sql_varchar"
Inonther words QuizQuestionID is giving the answer (nvarchar) rather than an int.
so I have to go back to the form to fix this....will post more in a minute
Well ur settign the value to A,B,C or D. Chancge the to 1,2,3,4 or the corresponding OD's in the database.
<input type="radio" name="QuizQuestion#QuizQue
b) #AnswerB#<br /></cfif>
Business Accounts
Answer for Membership
by: Jones911Posted on 2009-09-03 at 14:04:40ID: 25254930
A is not and int its a letter or char/varchar/nvarchar. You can't put a into an int field in a database.