<cfquery DATASOURCE="#Request.DataSource#">
UPDATE tb_name
SET #variables.filename#=
'#cffile.ServerFileName#.#cffile.ServerFileExt#'
WHERE VehicleID=63
</CFQUERY>
I'm getting an error.
Error Executing Database Query.
[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error in UPDATE statement.
I've tried putting different types of quotes around the
Basically the set field = something is giving me an error. How do I have the set field where field is a variable that changes? It's going to an Access DB.
UPDATE tb_name
SET #variables.filename#=
'#cffile.ServerFileName#.#cffile.ServerFileExt#'
WHERE VehicleID=63
</CFQUERY>
I'm getting an error.
Error Executing Database Query.
[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error in UPDATE statement.
I've tried putting different types of quotes around the
Basically the set field = something is giving me an error. How do I have the set field where field is a variable that changes? It's going to an Access DB.