Ask a Question related to Coldfusion Database Access, Design and Development.
-
CF_Greg #1
dynamic sql statement with cfqueryparam
I am trying to dynamically build a SQL statement (the ENTIRE statement) and
palce it into a variables.sqlString to be run later via
<cfquery name="foo" datasource="myDS">
#variables.sqlString#
</cfquery>
The issue I'm dealing with is I am trying to use CFQUERYPARAM as part of the
sql statement (which get put into a string). I wasn't sure if I'd be able to
put a cfqueryparam into a SQL statement to run later, and it looks like I might
be right. Has anyone been able to do this?
Here's a small clip of how how I am building the SQL:
sqlStatement = sqlStatement & ') VALUES (<cfqueryparam
cfsqltype="cf_sql_integer" value="#variables.keyID#">, <cfqueryparam
cfsqltype="cf_sql_varchar" value="#currentLocale#">, ';
etc.
CF_Greg Guest
-
Problem using cfqueryparam
CF throw me an error if I use <cfqueryparam cfsqltype="cf_sql_longvarchar"... on MS Access Memo field. My data in the Memo field is around 1000+... -
cfqueryparam and mysql
I have a question, is cfqueryparam's cfsqltype attribute database dependent? For example, in the LiveDocs, there is no mention of mysql's mediumint... -
cfqueryparam usage
Hello, Ive been tightening up my querys using the cfqueryparam tag and it does also seem to help greatly with speed. Is it worth using... -
Error With CFQUERYPARAM
Here is an error that only exists when cfqueryparam is used. The code below throws an error in the *second* query if the *first* query contains... -
cfqueryparam
Hi, I am trying to take values passed through a form and do a search based on that, but I am getting an error Error Executing Database Query.... -
jdeline #2
Re: dynamic sql statement with cfqueryparam
The first occurrence of cfqueryparam will begin with ), unless you are taking
care of that special case. And even though your example does not contain a
single quote, it would be a good idea to
#PreserveSingleQuotes(variables.sqlString)#
BTW, what error message are you getting?
jdeline Guest



Reply With Quote

