Thread: Coldfusion help
View Single Post
Old 04-13-2012, 10:27 AM   PM User | #1
fvnbab
New to the CF scene

 
Join Date: Apr 2012
Posts: 5
Thanks: 1
Thanked 0 Times in 0 Posts
fvnbab is an unknown quantity at this point
Coldfusion help

the aim is for the client(fictious) to update their details
so i hav created 4 cfm pages
1st page to search for a member
2nd page is the results page
3rd page to update the details for example details such as name is update
4th page finaaaly update into my database and the message should come up as "member updated" All this pages are put on the server as well.
My problems are well first of all i can only edit one client out of 10 this code is in the 2nd page and the currrent code is

<cfquery name = "Recordset1" datasource = "b1008321-access">
SELECT * FROM Member WHERE first_name LIKE '%seth%'
</cfquery>
<html>
<head><title>Search for Member</title></head>
<body bgcolor="#FFFFFF">
<table border="1">
<tr><td>Member Name</td></tr>
<cfoutput query = "Recordset1">
<tr><td><a href = "memberupdate3.cfm?memberID=#memberID#"> #first_name#</a></td></tr>
</cfoutput>
</table>
</body>
</html>
i want to be able to search for all the clients not just one
And the other problem is on the 4th page error message comes up
Error Executing Database Query.

[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error in UPDATE statement.
And the code i put for tht is

<cfquery datasource="b1008321-access">
UPDATE Member
SET first name='# FORM.first_name#', last name='# FORM.last_name#', address='# FORM.address#', Town='# FORM.Town#', date joined='# FORM.date_joined#'
WHERE memberID = #memberID#
</cfquery>
<html>
<body>
<h1>File Updated</h1></body>
</html>
fvnbab is offline   Reply With Quote