I am trying to loop over the tables of a database using the following code getting an error java.lang.UnsupportedOperationException
. i have even tried with cfloop query and other attributes
got errors complex value can't convert to simple value. can anyone tell me how shall i have to loop over this query ? Thanks.
<cfquery name="q" datasource="datasource">
SHOW TABLES FROM datasource
</cfquery>
<cfloop collection ="#q#" item="i">
#q[i]#
</cfloop>