Last active
December 25, 2015 11:49
-
-
Save mikesprague/5706254 to your computer and use it in GitHub Desktop.
CFML: convertQueryToStructArray
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfscript> | |
function convertQueryToStructArray( q ) { | |
var result = []; | |
for ( var row in arguments.q ) { | |
result.append( row ); | |
} | |
return result; | |
} | |
</cfscript> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment