Tagged Questions
5
votes
5answers
837 views
How do you use cfqueryparam in the ORDER BY clause?
I'm trying to be a good CF web developer and use <cfqueryparam> around all FORM or URL elements that make it to my SQL queries.
In this case, I'm trying to allow a user to control the ORDER BY ...
3
votes
5answers
1k views
How do I programatically sanitize ColdFusion cfquery parameters?
I have inherited a large legacy ColdFusion app. There are hundreds of <cfquery>some sql here #variable#</cfquery> statements that need to be parameterized along the lines of: ...
1
vote
3answers
192 views
Compare DateTime values by Min and not by Day in Coldfusion CFQUERY
This is the query that I have.
<cfquery name="qryname" datasource="dsn">
UPDATE ticketlist
SET status = <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="Expired">
WHERE expdatetime < ...
0
votes
1answer
74 views
Dynamic tablename in DAO.cfc?
I'm writing a subsystem that tables might be renamed from project to project.
Instead of asking the user of my subsystem to search & replace before using it, does this work?
<cfquery ...