Tagged Questions

8
votes
1answer
91 views

How should I use maxlength in CFQUERYPARAM list=“true”?

I'm curious how the maxlength attribute works in CFQUERYPARAM when you are passing a list. Does the maxlength apply to the length of the entire list (i.e. length of "1,2,3,4,5,6" = 11)? Or does the ...
5
votes
5answers
834 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
6answers
155 views

How I can encode/escape a varchar to be more secure without using cfqueryparam?

How I can encode/escape a varchar to be more secure without using cfqueryparam? I want to implement the same behaviour without using <cfqueryparam> to get around "Too many parameters were ...
3
votes
2answers
114 views

Query param not behaving as expected

I'm using an :order query param to pass an order argument to my function. Unfortunately, it seems not to have an effect on the output. The request debugging output shows the order argument is parsed ...
3
votes
10answers
1k views

Is there a solution to this cfqueryparam memory leak?

Updates: I have submitted the bug to Adobe and referenced this SO question In my real-world code where the problem occurred I decided to just remove my use of cfqueryparam. I am now using a custom ...
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: ...
2
votes
1answer
102 views

cfqueryparam questions/help

Via this question I've been told to start using cfqueryparam for my data, to prevent SQL injection attacks. How do I use it for my forms? Right now I've been going over Ben Forta's book, Vol 1 and ...
2
votes
1answer
502 views

What is the most appropriate Coldfusion cfsqltype to use for MS SQL's uniqueidentifier field type?

When connecting from Coldfusion 8 to a MS SQL 2008 datasource, what Coldfusion cfsqltype should I use for a SQL column set to 'uniqueidentifier'. <cfquery name="user" datasource="#ds#"> ...
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 < ...
1
vote
1answer
89 views

CFQUERYPARAM breaking with “+” in URL

I have a query: SELECT id FROM table WHERE field1=<cfqueryparam value="#URL.field1#" cfsqltype="cf_sql_varchar"> AND field2=<cfqueryparam value="#URL.field2#" ...
1
vote
2answers
439 views

Use of CFQUERYPARAM to specify table/column names in SQL

I need to dynamically construct a set of JOIN statements where the table and column names are passed in from another ColdFusion query. When passing the string values to into the statement, ...
0
votes
1answer
84 views

Coldfusion8 Parameter index out of range error

I'm doing something stupid, but I don't know what it is, can someone point out to me why I am getting this error: Parameter index out of range (1 > number of parameters, which is 0). From this ...
0
votes
2answers
135 views

problem with ColdFusion cfqueryparam and a complicated query

I have a query where I am inserting ~300 records using one insert query. For each record, I have to do replaces and operations on the data. I just found out I have to use cfqueryparam now because ...
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 ...