Tagged Questions
The cfquery tag has no wiki summary.
10
votes
4answers
6k views
Can I get a query row by index in ColdFusion?
I want to get a specific row in a ColdFusion Query object without looping over it.
I'd like to do something like this:
<cfquery name="QueryName" datasource="ds">
SELECT *
FROM tablename
...
6
votes
2answers
75 views
Why won't this query cache in ColdFusion 9.01 using cfscript?
I am writing a query in ColdFusion 9.01 script and having trouble understanding why it is not caching the results. The same exact query will cache when executed using the CFML tag syntax.
The SQL, ...
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 ...
5
votes
4answers
744 views
How can I use query-of-query UNION on n-recordsets when var scoping is needed?
I would like to be able to do a query of a query to UNION an unknown number of recordset. However when doing a query-of-query dots or brackets are not allowed in record set names.
For example this ...
4
votes
2answers
123 views
Problem with a challenging algorithm
I'm stumped. I need to access the next nth row in a query loop to show version differences between posts.
I'm using <cfquery> to output the revisions by group, and this is my expected output:
...
4
votes
6answers
2k views
How to Execute 2 or more insert statements using CFQuery in coldfusion?
Is it possible to Execute 2 insert or Update Statements using cfquery?
If yes how?
if no, what is the best way to execute multiple queries in Coldfusion, by opening only one Connection to DB.
I ...
4
votes
4answers
775 views
How to override SQL sanitization in ColdFusion
I have the unfortunate task of cleaning up a bunch of old ColdFusion code. Queries are all over the place, I am working on moving them all to common CFCs for easier maintenance.
I am running into a ...
3
votes
1answer
66 views
Is it possible to dynamically call a cfquery variable?
I'm going through a query in which there are 12 entries named "choice_1" through "choice_12." I want to be able to dynamically call an individual choice depending where it is in the loop.
So here is ...
3
votes
2answers
396 views
retreving long text (CLOB) using CFQuery
I am using CFQuery to retrieve the CLOB field from Oracle DB. If the CLOB filed contains the Data less than ~ 8000, then I can see retrieved the value ( the o/p), however If the value in CLOB field ...
3
votes
3answers
300 views
Using cfqueryparam with a ColdFusion HQL query
I am using a HQL query to get a bunch of state objects like so:
<cfquery name="LOCAL.qStates" dbtype="hql">
from States where countryID = #ARGUMENTS.countryID#
order by name asc
...
3
votes
2answers
237 views
Date Display problem in ColdFusion
When I retrived a Date field in TOAD it displayed like is '1/18/2038 9:14:07 PM',
But when I rertrived in Coldfusion using cfquery and displayed using , then I got the date on screen like ...
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
2answers
77 views
cfquery name attribute, optional?
Is name attribute of cfquery optional? The doc said it is required, but my code seems to run fine even without it. Is there a default value if not defined? and if so, shall I local var it or safely ...
2
votes
1answer
209 views
How can one get a list of all queries that have run on a page in ColdFusion 9
I would like to add some code to my Application.cfc onRequestEnd function that, if a certain application variable flag is on, will log query sql and execution time to a database table. That part is ...
2
votes
3answers
315 views
Combining query rows in a loop
I have the following ColdFusion 9 code:
<cfloop from="1" to="#arrayLen(tagArray)#" index="i">
<cfquery name="qryGetSPFAQs" datasource="#application.datasource#">
EXEC ...
2
votes
2answers
219 views
CF Query appears to return incomplete data from text field
I'm using CF8 and SQL2000. I'm storing a bunch of HTML in a Text field in my SQL table. When I do a simple CFQUERY against that data, and CFDUMP it, it's truncated to 64000 characters.
I've ...
1
vote
1answer
38 views
querying a result of cfquery or filtering cfquery
I have two tables of data categories and category relations. This is a setup to allow infinite levels of parent/child relationships.
I could put it into a linked list too I guess, but this might ...
1
vote
2answers
96 views
How can I stop Coldfusion from converting query column names to upper case?
When I select data from a MySQL table using the cfquery tag in ColdFusion 8, the column names are all converted to uppercase even though I've stored them in camelCase in the database table. Is there a ...
1
vote
5answers
154 views
Creating nested <ul> tree structure from ParentID's in a db
This seems like a pretty common task I want to do, but I can't wrap my head around the cfloops and cfqueries.
I have a database full of photo galleries. They all have an ID and a ParentID (except the ...
1
vote
4answers
240 views
Coldfusion 8 - cfquery insert statement times out
I'm building a script that uses cfhttp to reads a delimited log files. These log files tend be rather large so when I try to INSERT the data from the logfile into a table I've created, my cfquery ...
1
vote
2answers
1k views
Coldfusion + Google Map API v3 — info window and set bounds
Simply, I seem to be able to write code that either creates a clickable marker for a pop-up infoWindow OR gets the bounds of the returned markers and resets the map extent and zoom levels. I can't ...
1
vote
1answer
303 views
Building a select list inside a loop
How do you NOT use a query of queries inside a loop to solve the problem of having to build a select list for each row?
In this example, every customer has a list of actions unique to that customer:
...
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
2answers
541 views
Using cachedwithin attibute inside cfquery
When you use the cachedwithin attribute in a cfquery how does it store the query in memory. Does it store it by only the name you assign to the query? For example, if on my index page I cache a query ...
1
vote
4answers
544 views
SQL Injection Protection for dynamic queries
The typical controls against SQL injection flaws are to use bind variables (cfqueryparam tag), validation of string data and to turn to stored procedures for the actual SQL layer. This is all fine and ...
1
vote
2answers
316 views
mySql Query works in query browser but fails when I run in CFquery
At first I was thinking I was running into an issue with cfqueryparam and mysql. However when I change substitute them with static values I get the same error. This is stumping me, I'm too used to ...
1
vote
3answers
365 views
cfquery problem with complex update statements
I am trying to fire Update Query using cfquery like below
<cfquery name = "UpdateRecord"
dataSource = #DATASOURCE#
username = #DBUSER#
password = ...
1
vote
2answers
325 views
cfquery oracle stored procedure
I had to change the SQL stored procedure to ORacle stored procddure.I am able to successfully execute my modified stored procedure in oracle.
But unable to obtain the query result in CF for the ...
1
vote
3answers
3k views
How do I handle null values from ColdFusion queries?
If one of the columns in the returned coldfusion query result set has a NULL, how do we check if the value of this column being NULL?
Should we just say <cfif queryname.columnname[i] EQ ''> OR ...
0
votes
1answer
50 views
cfml, database and a multilingual website
I have a database that has four collums id,languageid,name,text
Depending on the users' default language, I create a query that has all the texts for the set language (where ...
0
votes
1answer
45 views
Grid for coldfusion with popup editor - similar to Telerik RAD Grid for ASP.NET
I am looking for a grid solution that works in Coldfusion that is similar to Telerik RAD Grid for ASP.NET with a popup editor. In addition to this is must be able to connect to SQL or be modified with ...
0
votes
2answers
89 views
CFQuery 'WHERE' from results of another query?
I'll explain the 'real life' application of this so it's easier to understand.
I'm working on an eCommerce app that has a category structure. It starts at the top level and gradually moves down ...
0
votes
1answer
35 views
Coldfusion: need help with outputing query on one row per system instead of multiple rows
HISTORY: A system has passed through 1 - 19 or so statuses before being moved to production. I need to build a report showing the date the system passed through a status and NA if the system did not ...
0
votes
2answers
88 views
SQL Server FIRST function via JDBC
I am building an application in cold fusion which has a SQL Server database connection. I need group records and only return the first in the group. I wrote the following query in coldfusion.
SELECT ...
0
votes
3answers
169 views
Filtering cfquery results
I am editing already existing code, which is why this question is formed as it is. I am attempting to use a query that already exists and without adding more form variables through the url.
So my ...
0
votes
1answer
120 views
MYSQL/Coldfusion CFQUERY: How do I avoid data-overwrite with SELECT t1.*, t2.*?
I'm looking for a way of doing this without listing out all of the fieldnames and using AS on each one. Maybe this is more of a mysql question. To be clear, I offer an example:
table1: users
...
0
votes
1answer
174 views
What is the syntax for concatenating in cfquery with access db
So, I've looked all over the web for this simple answer...and I can't find it.
I am trying to search an access DB via coldfusion query.
<cfquery name = "x" datasource = "cassupport_computers">
...
0
votes
1answer
191 views
How to add row values and get unique rows after they are added
I am using Coldfusion, to do a site search for my company. I have a stored procedure being called within a cfc, that returns all results for a keyword, no limits.
Then I do a subquery that either ...
0
votes
2answers
271 views
Why can't I use a dynamic column name in this query?
I am trying to build a cfquery using a dynamic column name:
<cfquery dbtype="query" name="getColLength">
SELECT MAX(LEN( #ListGetAt(ColumnList, index)# ))
FROM query
</cfquery>
...
0
votes
2answers
626 views
Using CFQUERY and CFSELECT to pull multiple values based on selection
I have a CFQUERY pulling three columns. The following CFSELECT allows the user to make a selection from various results based on the 'display' parameter, and sets the value to the 'value' parameter.
...
0
votes
2answers
124 views
What's wrong with my simple insert?
I'm using coldfusion to insert the contents of a struct (key-value pairs) into a database table. This is my code:
<cfloop collection="#results#" item="ID" >
<cfquery name="insertStuff" ...
0
votes
2answers
165 views
Nesting queries in CF
I'm using this code to display a list of platforms. If a platformID was specified upon entering the page, I would like to create a list of genres underneath the specified platform.
browse.cfm was ...
0
votes
2answers
116 views
<cfquery> not retrieving DATA
I am unable to retrieve any data from my cfquery. Same query when i run in sql developer i get the result.
Any reason why ?
Hi all, thanks for the responses. Sorry, it was my fault.
It was a data ...
0
votes
3answers
360 views
Can Coldfusion use Java methods/objects to get better cfquery performance?
I am wondering if there are java methods/objects that would be alternatives to cfquery, that both allow variable sanitation, and better caching methods.
I know that you can use information schema to ...
0
votes
1answer
81 views
Strange mySQL Coldfusion Problem
Hey guys well I'm working on this system and it giving me sooo much trouble. I just want to quit at this point. Long story short I made a few changes to how a mySQL table works, I went from storing a ...
0
votes
5answers
858 views
How to print all the result without using Results.columnname in ColdFusion
How to print all the result without using Results.columnname in ColdFusion
for ex:-
I have <cfquery name="getProductId">
select productId
from product
...
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 ...
-1
votes
1answer
81 views
Sorting values by property from cfoutput
This question for cold fusion programmers, and will be probably asked by me wrongly, because it is open question and actually can't be answered, coz u and me will be in a lack of inf about it :) But ...
-2
votes
1answer
150 views
Coldfusion cfquery in Jquery
Why Won't this work?
$("#selection").change(function () {
description = $("#selection").val();
console.log(description);
<cfquery datasource="#Application.cartdsn#" ...