Tagged Questions
5
votes
5answers
858 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
197 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
3answers
45 views
Error in my CFQUERYPARAM
I'm sure I'm just doing this horribly wrong with CFQUERYPARAM, but here's what I'm trying to do:
<CFQUERY DATASOURCE="tr3" NAME="qryPartner">
SELECT *
FROM UsrMatchActualTR2
WHERE
...
0
votes
1answer
76 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 ...