I have query which count all data in table and I try to display the output of count but I got an error
here the code
Error is
- Complex object types cannot be converted to simple values. in line 481
481 : #t#
I'm new in coldfusion,
tq.. :)
here the code
Code:
<cfquery name="countDATA" datasource="#ds#">
select count(quest_id)
from survey_question
</cfquery>
<cfset t = #countDATA#>
#t#
- Complex object types cannot be converted to simple values. in line 481
481 : #t#
I'm new in coldfusion,
tq.. :)
Comment