Question
Output table field values
I would like to know if there is something where I can
automatically output all fields from one table so I dont have to
manually put in each field name:
<cfquery name = "myQuery" datasource = "mydsn">
select * from tableOne
</cfquery>
<cfoutput query="myQuery">
#city#<br>
#state#<br>
#county#<br>
#country#<br>
#continent#<br>
</cfoutput>
Is there a dynamic array or ColdFusion method that can automatically output all the values from one table?
<cfquery name = "myQuery" datasource = "mydsn">
select * from tableOne
</cfquery>
<cfoutput query="myQuery">
#city#<br>
#state#<br>
#county#<br>
#country#<br>
#continent#<br>
</cfoutput>
Is there a dynamic array or ColdFusion method that can automatically output all the values from one table?
