Say I have the following statement:
<sql:query escapeText="false" var="myQuery">
select
*
from
bpm_run_processes
where
to_char(created_date, 'YYYY-MM-DD') = to_char(sysdate, 'YYYY-MM-DD')
</sql:query>
<core:forEach indexVar="I" items="${myQuery.rows}" var="row">
Instead of looping through each row and doing a <core:set> on each column, I want to get the entire array from ${myQuery.rows} set to a string and log it out. I am not concerned about any one particular column or row, I want the entire array in a single string in the most efficient fashion; assuming that is possible.
Thanks.