downloadFileFromQuery - cfsimplicity/spreadsheet-cfml GitHub Wiki
Provides a quick way of downloading a spreadsheet to the browser by passing in a query and a filename. The query column names are included by default as a bold header row.
downloadFileFromQuery( data, filename[, addHeaderRow [, boldHeaderRow [, xmlFormat [, contentType [, streamingXml [, streamingWindowSize [, ignoreQueryColumnDataTypes [, datatypes ] ] ] ] ] ] ] ] )
Required arguments
dataquery: the data you want to downloadfilenamestring: name of the file to download, without the file extension
Optional arguments
addHeaderRowboolean default=true: whether to include the query column names as a header rowboldHeaderRowboolean default=true: whether to make the header row boldxmlFormatboolean default=false: whether to create an XML spreadsheet (.xlsx)contentTypestring default="application/msexcel" OR "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": specify if you wish, otherwise an appropriate MIME type for the spreadsheet will be usedstreamingXmlboolean default=false: whether to create a memory-efficient streaming XML spreadsheetstreamingWindowSizeinteger default=100: (positive integer greater than 0) the maximum number of rows that are kept in memory at once while populating a streaming spreadsheet, before being flushed to disk.ignoreQueryColumnDataTypesboolean default=false: whether to ignore the query column data types (e.g.VarChar) and auto-detect each cell type from the value.datatypesstruct: specify data types as keys and the columns they should apply to in your data as an array of column names or (positional) numbers. These types will override the query column types or auto-detection where possible. Possible data type keys are:string,numeric,date,time,boolean,auto. See addRows() for examples.
Chainable? No.
Example
spreadsheet = New spreadsheet();
data = QueryNew( "First,Last","VarChar,VarChar",[ [ "Susi","Sorglos" ],[ "Frumpo","McNugget" ] ] );
filename = "report";
spreadsheet.downloadFileFromQuery( data,filename );