Tagged Questions
0
votes
2answers
49 views
ColdFusion 9 - Top n random query results
I've got a series of queries that I do to get 5 results at random, the problem is that it is taking a while to get through them, mostly because it involves a loop to assign a rand value that I can ...
2
votes
3answers
71 views
Creating dynamically named variables
I'm fairly new, as you'll see. I want to create the following variables:
V1 = word 1 in my query
V2 = word 2 in my query
etc...
I can do this statically like so:
<cfset ...
0
votes
2answers
54 views
Trying to compare a rowvalue to form value while in a query using cfif and performing the query
I know, the title sounds confusing but I literally couldn't think of another way to word it. Anyway, here's what I mean
<cfquery name="search_all" datasource="ContactData">
SELECT DISTINCT
...
0
votes
2answers
83 views
Omitting blank/null records from a query? (Coldfusion)
I am currently trying to find a way to omit any results from a search where the field is blank. The simple method would be to use a <cfif len(example) neq 0>#example#</cfif> but this then ...
0
votes
1answer
71 views
Coldfusion Need Help Parent / Child Dynamic Menu
Basically I want to have each child menu only display on the parent menu ID. But so far, all I can get is all of the child li's connecting to any parent menu I set up.
Here is a diagram to explain ...
1
vote
5answers
71 views
Sum values in cfloop
I am referring to a previous SO Coldfusion Calculate Sum Total (Loop? ) that was marked as a correct answer, but the code doesn't work for me.
I am trying to create a grand total from several fields. ...
0
votes
2answers
60 views
Adding text / extra queries to cfspreadsheet output
I'm running Coldfusion 10 on Microsoft Windows Server 2008 R2 Data Center – SP 1 with a SQL Server 2012 datasource.
I have a cfspreadsheet tag on a page that goes like this:
<cfinvoke ...
0
votes
2answers
45 views
caching a query that changes infrequently in Coldfusion/cfWheels
I'm looking at the cache function in the findAll function of cfWheels. I'm a little apprehensive about using it. My queries are not taking that long that I absolutely need them, but a bit of a speed ...
1
vote
2answers
80 views
Error with undefined variables while looping over a query
I have an error while looping over a query using cfloop.
When I use a cfdump on the query (inside the loop, mind you), I can see all the data just fine. But when I try to get the value of each ...
1
vote
1answer
87 views
How to dynamically construct query output variables in Coldfusion?
I'm trying to loop over an array which contains column names I need to display. A user can define his own columns, so this will be a dynamic column name list
For example, column names may be:
...
3
votes
2answers
103 views
Submitting a form value straight into the URL?
i've created a paginator for my search function on my site. The paginator works perfectly fine, so does the search function. However, the issue i have is i'm having to use excess code just to pass ...
2
votes
1answer
66 views
CF10 concatenated mysql string as binary data
I'm working on moving a site from CF8 to CF10 and just came across something I wasn't expecting. My MySQL query has a simple concatenate to combine a company ID with company name as such:
SELECT ...
0
votes
1answer
85 views
How to sort a table generated from a looped Mysql query in ColdFusion?
I have an HTML table that is generated from a query of the 'user' table that finds all users on a system.
A second query uses 'select count' to count how many meetings a user has booked by checking ...
1
vote
3answers
141 views
Creating a dynamic form, but how to do the query?
I've created a dynamic form which allows you to modify the amount of input fields you need. This is because they may have 15 band members and need 15 fields, or one band may have 2. The only I problem ...
4
votes
2answers
124 views
ColdFusion Return only part of string from database
I am constructing a search function for our CMS, essentially just creating a cfquery that looks in our database for the given text. When I display the results to the browser I was hoping to have as ...
1
vote
3answers
204 views
Coldfusion dynamic query output
Not sure if this is possible or not. What I am trying to do is build an output string via queries. I am concatenating the output "name" and appending the "value" to the end. Then outputting the ...
6
votes
2answers
147 views
ColdFusion - Converting a query into CFC setters
I am converting an older site to CF 10 and wanted to bring forward some of my helper code.
The code looks at a query, finds things that are in our instance, and populates them:
<cffunction ...
1
vote
5answers
159 views
ColdFusion: Can you pull out a unique record from a query using recordCount?
It's a bit of tricky question, however, my page for most rated bands displays the band logos in order of how high they have been rated. My only problem is i want to count through the records by using ...
5
votes
6answers
472 views
ColdFusion's cfquery failing silently
I have a query that retrieves a large amount of data.
<cfsetting requesttimeout="9999999" >
<cfquery name="randomething" datasource="ds" timeout="9999999" >
SELECT
col1,
...
2
votes
2answers
169 views
Using BETWEEN on a varchar field not a numeric field?
I am using ColdFusion 8 and SQL Server 2008 R2.
I am trying to query a column of values to get rows with a value within a range. The column SHOULD be numeric, but it's not. It's setup as a varchar ...
0
votes
2answers
81 views
Have you seen this weird QoQ Error [ColdFusion]?
I have confirmed that the first query works as expected
<cfquery name="validation_info" dbtype="query">
select shipViaName,TOTALSHIPRATE
from s_c_c.qShipCalc
WHERE ...
1
vote
1answer
124 views
MS-SQL get difference value
I have this query that calculates current gallons value from all fuel tanks in my database.
SELECT DISTINCT y.TankNumber as TankNumber
, y.Gallons as Gallons
, y.timeUpdated
, y.FuelType ...
1
vote
3answers
472 views
MS-SQL sort output in descending order
I have this MS-SQL query with thousands of row records in database:
SELECT DISTINCT TOP 7 DATENAME(MM, mydatetime) + ' ' + CAST(DAY(mydatetime) AS VARCHAR(2)) as thedate
, MONTH(mydatetime)
, ...
1
vote
2answers
164 views
Filter browser information from stored useragent data in MS SQL database
I have stored visitors' user_agent info in my MS-SQL database. Each row has this regular format:
Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; F-6.0SP2-20041109; InfoPath.1; .NET ...
1
vote
3answers
348 views
coldfusion requesttimeout
I have a ColdFusion template that executes a long running query. I have increased the request timeout from 3600 to 6600 but my template continues to timeout. I would like to increase the request ...
0
votes
2answers
90 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
217 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 ...
2
votes
4answers
636 views
ColdFusion Query of Queries 100 x Slower than the Database Call Itself (with relatively low record counts)
We have an analytics chart which first queries the database log table to pull all relevant from an optimized query only selecting what is needed along with grabbing relevant start and end ID's since ...
0
votes
1answer
92 views
Why sorting works in MySQL but not in the Coldfusion resultset?
I'm running Coldfusion8/MySQL 5.0.88 and have a search whose results I need to sort ASC/DESC depending on user settings.
If I run this query inside MySQL, it works:
SELECT a.*
FROM ...
1
vote
1answer
121 views
how to structure query for drilldown of unknown level
What I have is a bunch of categories and subcategories stored in Oracle. The relationship is only represented one way: each row has a categoryid and a parentid which is the categoryid of that row's ...
0
votes
0answers
185 views
Loop though a query within a cfoutput of another query in Coldfusion
I'm attempting to write a function to find images from alternate versions of a product (these are books, so any product with the same "title" will work) by looping through any product that shares a ...
1
vote
2answers
400 views
get auto increment in query as a variable to use in another query
I am inserting into two tables. Into the first table goes a new 'item'. There are a lot of fields, but for simplicity I'll only show you what I need. This is my coldfusion page:
<cfquery>
...
0
votes
1answer
104 views
sql select from oracle in coldfusion
After a form submit, javascript function is called. JS checks to see if there is any data entered into the fields. On success, loads this CF page. The page is an ajax load, that is why I'm not using ...
0
votes
0answers
106 views
How can I use a SQL Server FreeText Query with ColdFusion
I ran the query below in a SQL Server query window and it returns the expected records:
SELECT * FROM (table1 as t1 INNER JOIN table2 as t2 on t1.acctid = t2.id)
WHERE upper(status) = 'RUNNING' ...
0
votes
2answers
120 views
how to modify the results of a MySQL query in Coldfusion (replace database integer with HTML button/text)
I'm using datatables along with Jquery Mobile (server Coldfusion8, MySQL 5.0.88) to display tabular data. While this works fine, I'm trying to integrate AJAX into the table, so whenever the user pages ...
0
votes
2answers
104 views
Do I have to cfqueryparam or scope values from a query when I'm looping through it?
I'm was sitting forever on a Coldfusion8 INSERT into MySQL (5.0.88)
The data came from a query named "q" like so:
[Record # 1]
ILN_KAEUFER: 9900000002985
ILN_VERKAEUFER: 9900000003005
Then I ...
0
votes
3answers
246 views
Is it a good idea to store and access an active query resultset in Coldfusion vs re-quering the database?
I have a product search engine using Coldfusion8 and MySQL 5.0.88
The product search has two display modes: Multiple View and Single View.
Multiple displays basic record info, Single requires ...
2
votes
3answers
166 views
how to select a specific record from a query in Coldfusion?
I'm trying to optimize a product search to be used on mobile devices using Coldfusion8/MySQL.
Right now the following happens:
1. user searches for "FOO"
2. Q1: search database for no of results
3. ...
0
votes
2answers
235 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
...
0
votes
1answer
117 views
ColdFusion query of query strange type cast
<cfquery dbtype="query" name="LOCAL.modello">
SELECT
*
FROM
modelliDelMarchio
WHERE
marchioid = #ARGUMENTS.marchioid#
AND tipologia = #ARGUMENTS.tipo#
AND nome = ...
2
votes
1answer
149 views
Coldfusion: QueryNew and auto increment?
Is there a possiblity to add the "auto_increment" attribute to QueryNew() in Coldfusion?
I want to simulate a database, so I need a primary key, which I refer to.
My goal is an easy navigation with ...
1
vote
1answer
155 views
Using # and " in ColdFusion query gives error
I am trying to insert the following string in my DB using CF query: Aman#30 is "OK"
But I get the error "Invalid construct: Either argument or name is missing."
On further investigation I found that ...
0
votes
3answers
417 views
Coldfusion Query of Query missing results from date BETWEEN clause
I have a query called AllPosts from a query of a query.
AllPosts has two results:
Row 1| ID: 2 PublishedDate: 2012-05-30 16:47:00.0
Row 2| ID: 3 PublishedDate: 2012-05-31 15:50:00.0
When I do ...
2
votes
4answers
317 views
do I have to scope query output in Coldfusion?
If I'm a running a database query/stored procedure in Coldfusion, what is the proper way to reference fields returned from the query?
<cfstoredproc procedure="proc_select_extern" ...
2
votes
1answer
851 views
How to access query column with multiple words?
I'm using a cfspreadsheet read to read a sheet into a query object.
<cfspreadsheet action="read" src="TestExcel.xls" sheet="1" query="spreadsheetData" headerrow="1" excludeHeaderRow="true">
...
0
votes
4answers
306 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 ...
0
votes
2answers
324 views
how to output a random file using Coldfusion cfdirectory and randRange functions?
I'm still trying to get my grips on Coldfusion...
I need to create a directy of files (say there are 10 files) and output 5 random files. Getting and outputting files is ok, but I'm not sure where to ...
0
votes
3answers
234 views
Query with grouped results by column (SQL Server)
I've got a many to many relationship between items-itemnames-languages
The itemnames don't appear for every language.
I'd like to get a result with all the items only represented once, but be able ...
2
votes
1answer
667 views
Getting complex object error when trying to output query values
My goal is to just output the column data specified in the "fieldList".
Getting the following error:
Complex object types cannot be converted to simple values. The expression has requested a ...

