vote up 4 vote down star

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
</cfquery>

<cfset x = QueryName[5]>

But it's giving me an error saying that the query isn't indexable by "5". I know for a fact that there are more than 5 records in this query.

flag

75% accept rate

3 Answers

vote up 11 vote down check

You can't get a row. You have to get a specific column.

<cfset x = QueryName.columnName[5]>
link|flag
Thanks, thats what I was looking for. – Brian Bolton Jul 31 at 14:04
I prefer bracket notation for both rows and columns, but either way is just as valid. QueryName["columnName"][5]. You'll need bracket notation if you want to use a variable for the column name, for instance. – Al Everett Jul 31 at 18:28
vote up -1 vote down

Without adding 'ORDER BY someColumnName' in your SELECT query QueryName[5] will be returning unpredictable results. Try narrowing row retrieval in the SQL statement so it returns just one row. Setting CF variable will be then trivial

link|flag
vote up -1 vote down

you have to convert the query to a struct first,

<cfscript>
function GetQueryRow(query, rowNumber) {
var i = 0;
var rowData = StructNew();
var cols = ListToArray(query.columnList);
for (i = 1; i lte ArrayLen(cols); i = i + 1) {
rowData[cols[i]] = query[cols[i]][rowNumber];
}
return rowData;
}
</cfscript>

<cfoutput query="yourQuery">
<cfset theCurrentRow = GetQueryRow(yourQuery, currentRow)>
<cfdump var="#theCurrentRow#">
</cfoutput>

hope this points you in the right direction.

link|flag
i thought this was the only way to do this too, until i saw patrick's answer – Kip Aug 1 at 15:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.