クエリを Excel ドキュメントにエクスポートしようとしています。
私が使用しているコードは次のとおりです。
<cfscript>
//Use an absolute path for the files. --->
theDir=GetDirectoryFromPath(GetCurrentTemplatePath());
theFile=theDir & "invoicesDue.xls";
//Create an empty ColdFusion spreadsheet object. --->
theSheet = SpreadsheetNew("invoicesData");
//Populate the object with a query. --->
SpreadsheetAddRows(theSheet,invoicesDue);
</cfscript>
<!--- Write the sheet to a file --->
<cfspreadsheet action="write" filename="#theFile#" name="theSheet" sheetname="invoicesDue" overwrite=true>
私が得ているエラーは次のとおりです。
'' is an invalid date or time string.
121: SpreadsheetAddRows(theSheet,invoicesDue);
問題は、クエリをダンプしたところ、引用符がどこにも見られず、すべての日付/時刻セルに「2011-03-31 00:00:00.0」などの日時が入力されているか、空のストリング。
原因がわからないので、他の誰かがこのエラーに遭遇したことがあるかどうか疑問に思いました。