`` is the primary method of executing database queries and query-of-queries (QoQ) in ColdFusion/CFML.

learn more… | top users | synonyms

0
votes
2answers
50 views

cfmail group attribute throws error

I have a query which returns multiple results with just data in one column as different for a particular report number. I want to group the results for one report number and send an email to one ...
2
votes
0answers
46 views

Mix raw queries and ORM operations within the same cftransaction

Is it safe to mix raw queries using cfquery and ORM operations within the same cftransaction tag? <cftransaction> <cfquery datasource="test">...</cfqueyr> <!--- A ---> ...
0
votes
2answers
102 views

update cfquery within a cfloop over a query

I am going through all the records in the column vals of the Values table and tranforming any absolute urls to relative urls. I get this error [Macromedia][SQLServer JDBC Driver][SQLServer]Incorrect ...
0
votes
4answers
176 views

How to populate a dynamically created dropdown box in a using javascript and coldfusion

I have a dropdown box in a row that was dynamically created. I'm populating that box on within the screen. Is there a way that I can use cfquery to get the info from the sql server and populate the ...
0
votes
3answers
129 views

Where to put a cfquery in a Coldfusion Form

I have a cfquery that is using some of FORM fields in the WHERE clause. My first problem is that every time I access my webpage the cfquery code appears on the top of the page. Where should I put the ...
0
votes
1answer
109 views

Coldfusion (Solr) search behavior

I have this "indexer" template: <cfquery name="LOCAL.modelli" datasource="xxx"> SELECT id, name, brand FROM products </cfquery> <cfindex action="refresh" ...
0
votes
1answer
99 views

Call a cfquery in javascript but, it's not doing anything

I'm trying to create a query using Coldfusion (cfquery) to retrieve several dollar amounts, add them, and then see if it matches the dollar amount being calculated in the application. But, it's not ...
0
votes
1answer
138 views

Group queries inside a cfloop

I'm looking to loop through a query, and would like to use grouping, like one would using cfoutput. I know CF10 added that support, but is there a script that emulates that behaviour so that items can ...
1
vote
2answers
125 views

Different results with cfstoredproc and cfquery

When I execute a stored proc via cfstoredproc, I am getting a different result than calling that stored proc via cfquery. I am passing in the same exact parameter values to each call. And also, when I ...
2
votes
2answers
177 views

How can I escape commas inside cfparam VARCHAR lists generated with ValueList?

Let's say there is a SQL table Fruit id | name --- ------ 1 | 'apples' 2 | 'pears' 3 | 'kiwi' 4 | 'bananas, peaches and plumbs' Given the following queries <cfquery name="qAllFruit" ...
0
votes
1answer
138 views

Passing JavaScript variables to a ColdFusion query

I have an update query to which I am passing a JavaScript array called "newdata", obviously, that didn't work so I don't know how to pass my JavaScript variables to ColdFusion in order to run an ...
2
votes
1answer
173 views

ColdFusion inital value of currentrow when no index specified in cfloop

I am converting a ColdFusion application to C# (I'm a CF n00b). I have a script that performs a cfquery and then cfloop's through the results, and it appears to be trying to compare the current row ...
1
vote
2answers
222 views

how can I use AngularJS and a serializeJSON cfquery

I am trying to take a look at AngularJS, with a cf backend I have the following code that pulls a regular cfquery called getIndex which pulls five rows of columns each (firstName, lastName) var ...
1
vote
3answers
124 views

Why is ColdFusion altering the values in my query results?

This is a weird one I've never noticed before. I am running a SELECT query in ColdFusion 8 against an iSeries/DB2 database. Here's the query in it's simplest form: <cfquery name="qMyData" ...
0
votes
1answer
34 views

Does Caching in ColdFusion returns the updated data and Cache again?

No code required.. Just asking. (Please bear with me, English is not my primary language) Here is the scenario. I cache a query for 2 hours, and the data is updated in the database before 2 hours ...
2
votes
3answers
133 views

How do I use cfqueryparam in ORDER BY to list titles matching “School of ” first

How do I use cfqueryparam in the ORDER BY to have titles matching "School of " listed first and then just list the rest of the titles? Here is my current query: <cfquery name="getblogs" ...
1
vote
2answers
132 views

Is it possible to have dynamically generated query names in ColdFusion?

What I am trying to do is <cfloop array="#LOCAL.someArray" index="LOCAL.aString"> <cfset LOCAL.queryName = "uniqueQueryName_" & LOCAL.aString /> <cfquery ...
4
votes
2answers
97 views

access variables from Appliction.cfc

I would like to know the new way of calling variables from the Application.cfc file when using the script function, which has the format of "this.something" My example: component { // ...
1
vote
1answer
170 views

Remove duplicates from cfquery based on a particular column

I have got two cfquery result with same column name. I want to merge them in such a way that I remove the duplicates based on a particular colum. So it should be like merge query 1 with query 2 where ...
0
votes
2answers
56 views

Using onRequest as a pre processor

Is it possible to pre-process cfquery commands such that cfqueryparam is wrapped around the parameters? Example: <cfquery name="local.qry"> SELECT FirstName FROM Person WHERE PersonID = ...
0
votes
2answers
88 views

CF QoQ is throwing runtime error. “Column reference is not a column in any of the tables of the FROM table list.”

In my code, I first create the Query Object: <cfset memberData = QueryNew('slug,pos,firstname,lastname,email') /> <cfset temp = QueryAddRow(memberData, #numMembers#) /> <!--- LOOP ...
1
vote
3answers
215 views

Transpose query in ColdFusion

I have a simple cfquery which outputs 3 columns with their respective data. The columns are name, address and age. I want to transpose this set of data so that the names become the columns and the ...
1
vote
4answers
104 views

In ColdFusion 8, is there a way to see the SQL inside a failing cfquery?

I have a <cfquery> which generates some SQL inside. It's failing, but I have no idea why. I tried wrapping it inside a <cftry> <cfcatch> block, and dumping the result. However, ...
1
vote
1answer
185 views

cfquery in cfcomponent not returning latest results in coldfusion 9

I'm new to ColdFusion. I'm having a problem with coldfusion components. I have a functionality where i call cfcomponent function through jquery ajax call, and in the cffunction i'm executing a query ...
1
vote
3answers
107 views

I'm inserting null records when I didn't input anything

I'm trying to first check for NULLs and if the value is NULL skip the INSERT. But that is not what's happening. The code is inserting NULL records even though I have not input anything in the form ...
0
votes
2answers
234 views

Selecting A row range from a query of queries

How would I select a specific range of rows using a query of queries? e.g <cfquery name="myQuery" maxrows ="20" startrow="12"> SELECT * FROM previous_query WHERE row_numer >= 12 ...
4
votes
2answers
144 views

CFQUERY times out when using cfqueryparams and MSSQL Server?

I'm executing a query that returns about 16000 rows. Running the straight SQL in MS SQL Server Manager returns the records in a few seconds. Running the same SQL in cfquery returns it in about the ...
2
votes
4answers
178 views

ColdFusion - approach for table of query data and CRUD actions

My question is more geared towards approach than it is programming or errors. I have a query that runs and gathers a set of data. I then want to use that query's return values to build a table on a ...
1
vote
1answer
276 views

cfqueryparam with uniqueidentifier type in table

I have a query where I am attempting to insert values into a table and one of these values (ImportID) is of type uniqueidentifier in the database. I have looked in the adobe CF documentation and saw ...
0
votes
1answer
45 views

Coldfusion Databases storing acting wonky

So Coldfusion is acting wonky today. I can't seem to update DB. For example if I try to query this : <CFQUERY DATASOURCE="tr3" NAME="qryData2"> SELECT * FROM UsersExpDataTR2 ...
0
votes
2answers
62 views

How to create a function in CFML within some SQL queries?

I would like to create a function in CFML taking 3 parameters (a number and two dates). The function will then perform a few cfquery queries on these data like SELECT, UPDATE and INSERT...Any idea on ...
0
votes
2answers
110 views

How to call an INSERT query by name?

I've to clone a class ID #FORM.classid# several times but instead of writing the INSERT sql query each time I need it, is there any solution to just write it one time and call the query with its ...
1
vote
3answers
142 views

cfquery param on query containing if statment

How do you use cfqueryparam on this line of code? SET mailing_list = <CFIF IsDefined("FORM.mailing_list")>#FORM.mailing_list#<CFELSE>0</CFIF>
0
votes
5answers
392 views

Why does adding “AND 1=1” fix SQL query in Coldfusion?

There have been several times when I've created a cfquery and for no good reason, it doesn't work. For example, I recently had a query like this: <cfquery name="get_projects" ...
0
votes
4answers
305 views

Coldfusion: Move data from one datasource to another

I need to move a series of tables from one datasource to another. Our hosting company doesn't give shared passwords amongst the databases so I can't write a SQL script to handle it. The best option ...
0
votes
2answers
351 views

how to store query data in variables in ColdFusion for use later?

I am trying to retrieve and store ID's for each item retrieved from my table, so I can use these ID's later. I tried nesting the queries, but this didn't, work. Here is my first query: <CFQUERY ...
1
vote
1answer
78 views

define a list of id's for grouped item

i got a little question, i just can't understand, what is the problem and how do i solve it, i have a coldfusion variable, for example #account_code#, first of all, this code looks like this: ...
0
votes
4answers
170 views

Having trouble with a SQL Join in ColdFusion

I'm trying to do something very simple in CF/SQL but just can't seem to figure out what I am doing wrong. I have these tables: movies genres actors moviesGenres moviesActors ...
1
vote
1answer
92 views

Why is MySQL looking for colum with name of value inserting

When doing a cfquery to MySQL, MYSQL gives me the error Unknown column 'Question' in 'field list' on the following code: <cfquery name="qUpdateTheQuestion" datasource="testmaster"> INSERT INTO ...
3
votes
2answers
135 views

Excess Characters Being Generated by ColdFusion Query/output

I've got a strange issue with some Coldfusion/SQL Query output. The actual data is generating properly, but at the bottom of the page it's outputting ...
2
votes
1answer
286 views

Creating a stored procedure in MySQL5 with ColdFusion 9's <CFQUERY>-Tag

I wonder if it's possible to create a stored procedure in MySQL5 via ColdFusion's <cfquery>-tag. I've never done anything with storedprocedures before... I was trying to set a function which ...
0
votes
3answers
143 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 ...
3
votes
1answer
138 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 ...
0
votes
1answer
138 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
121 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 ...
1
vote
1answer
111 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 ...
0
votes
2answers
553 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 ...
7
votes
2answers
283 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, ...
2
votes
2answers
288 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 ...
0
votes
1answer
79 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 ...

1 2