
August 2nd, 2003, 03:51 AM
|
|
Contributing User
|
|
Join Date: Jul 2003
Location: Netherlands
Posts: 99
Time spent in forums: 4 h 1 m 8 sec
Reputation Power: 10
|
|
You could try to debug your query to actually see what the values are that are being inserted in the database.
i.e.:
Quote:
<!--- <CFQUERY DATASOURCE="#DS#" NAME="insert"> --->
<cfoutput>
Insert INTO tblEnquete
(
QuestionID,
AnswerID
)
VALUES
(
#QuestionID#,
#AnswerID#
)
<BR></cfoutput>
<!--- </CFQUERY> ---> |
This may get you a step further.
__________________
** Don't expect me to code your needs, but if I am able to help, I'm willing. Shout, grab and use the hand!
** Man can no more own the land we walk upon, as they can lay claim on the air that we breath
** DeepDown I'm addicted to structures.... ohw and music 
** Almost forgot I had an account here [*o*]
Last edited by DeepDown : August 2nd, 2003 at 03:56 AM.
|