Aaron Woehler
Member since Nov 2, 2012
- Profile: /members/10408-aaron-woehler.htm
- URL: http://woehler.us
- Comments: 2
Recent Blog Comments By Aaron Woehler
-
Ask Ben: Converting a Query to an Array
Posted on Nov 6, 2012 at 1:08 PM
Thanks for sharing this. I would change This line from LOCAL.Row[ QtA.ColumnName ] = LOCAL.Qry[ LOCAL.ColumnName ][ LOCAL.RowIndex ]; To StructInsert( LOCAL.Row, LOCAL.ColumnName, LOCAL.Qry[ LOCAL.ColumnName ][ LOCAL.RowIndex ] ); To allow better control of the case values when workin... read more »
-
Updated: Converting A ColdFusion Query To CSV Using QueryToCSV()
Posted on Nov 2, 2012 at 12:56 PM
Thanks for writing this. I added the following to make the fields argument optional. <cfif isDefined( "arguments.fields" ) > <cfloop index="LOCAL.ColumnName" list="#ARGUMENTS.Fields#" delimiters=","> <!--- Store the current column... read more »