-
-
Notifications
You must be signed in to change notification settings - Fork 36
writeFileFromQuery
Julian Halliwell edited this page Sep 20, 2021
·
10 revisions
Write a spreadsheet file to disk from a query. The query column names are included by default as a bold header row.
writeFileFromQuery( data, filepath [, overwrite [, addHeaderRow [, boldHeaderRow [, xmlFormat [, streamingXml [, streamingWindowSize [, ignoreQueryColumnDataTypes [, datatypes ] ] ] ] ] ] ] ] )
-
data
query: the data you want to download -
filepath
string: full path of the file to be written, including filename and extension
-
overwrite
boolean default=false: whether or not to overwrite an existing file -
addHeaderRow
boolean default=true: whether to include the query column names as a header row -
boldHeaderRow
boolean default=true: whether to make the header row bold -
xmlformat
boolean default=false: whether to create an XML spreadsheet (.xlsx) -
streamingXml
boolean default=false: whether to create a memory-efficient streaming XML spreadsheet -
streamingWindowSize
integer 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. -
ignoreQueryColumnDataTypes
boolean default=false: whether to ignore the query column data types (e.g.VarChar
) and auto-detect each cell type from the value. -
datatypes
struct: 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.
spreadsheet = New spreadsheet();
data = QueryNew( "First,Last", "VarChar,VarChar", [ [ "Susi","Sorglos" ], [ "Frumpo","McNugget] ] );
filepath = ExpandPath( "report.xls" );
spreadsheet.writeFileFromQuery( data, filepath, true );