kosmokramer
Programmer
Hey. I know I am probably missing something stupid, but I can't get this to work for some reason. When I run the query with the hard coded values in an online database query analyzer, the query works, but it will not work on my asp page. With all that said, here is the query:
As it is right now, I do not have any line breaks in this string. I tried breaking it up earlier, but it kept giving me errors. Anyways, when I try to run this query, it gives me a syntax error.
P.S. All the data types are text except for membNumb which is a numeric value
Code:
strSQL6="Update PMD_Members Set membName='" & Request("membName")& "', address='" & Request("address") & "', phoneNumber='" & Request("phoneNumber") & "', position='" & Request("position") & "', email='" & Request("email") & "' where membNumb=" & Request("membNumb")
As it is right now, I do not have any line breaks in this string. I tried breaking it up earlier, but it kept giving me errors. Anyways, when I try to run this query, it gives me a syntax error.
P.S. All the data types are text except for membNumb which is a numeric value