Hello,
I can't seem to get my update query to "check" a yes/no access database field. It's probably something really simple that I am missing.
Here's the fields that I have on the database side:
On the coldfusion page I have the following query: Notice the form.varNames are coming from a previous form where user typed in the information
So the problem is that the code will not update the 'agreed' field inside the database. Any suggestions/ideas/hints/help?
Thank you in advance.
I can't seem to get my update query to "check" a yes/no access database field. It's probably something really simple that I am missing.
Here's the fields that I have on the database side:
Code:
id AUTONUMBER
name TEXT
userNo NUMBER
agreed YES/NO
On the coldfusion page I have the following query: Notice the form.varNames are coming from a previous form where user typed in the information
Code:
<CFQUERY NAME="userInfo" DATASOURCE="user">
UPDATE t_User
SET name = '#form.name#',
userNo = '#form.userNo#',
agreed = '#form.agreed#',
WHERE user.id = #form.id#;
</CFQUERY>
So the problem is that the code will not update the 'agreed' field inside the database. Any suggestions/ideas/hints/help?
Thank you in advance.