<cfquery name="writefile" datasource="#dsn#">
SELECT abc,def,pqr,stu,zex
FROM mytable
</cfquery>
<cfoutput>
<table>
<cfloop query="writefile">
<tr>
<cfloop list="#ArrayToList(writefile.getColumnNames())#" index="col">
<cffile action="write" file="d:\test.txt" output="#writefile[col][currentrow]#">
</cfloop>
</tr>
</cfloop>
</table>
</cfoutput>
上記のコードを使用して、cffile を使用してテキスト ファイルを特定の場所に書き込みます。
しかし、テキスト ファイルには、クエリのすべての結果が含まれているわけではありません。私を案内してください。