Thank you. I am able to iterate my "workque" objects using :
#foreach($workque in $workques)
<tr>
<td>$workque.wrkq_id</td>
<td>$workque.wrkq_wkgp_id</td>
<td>$workque.wrkq_wrkr_id</td>
</tr>
#end
but when I try to print the values ,the output using this is:
$workque.wrkq_id $workque.wrkq_wkgp_id $workque.wrkq_wrkr_id
the values I am trying to access are referring back to the actual
database column names (workque.<COLUMN NAME>). Should I have a
corresponding Workque.java file with methods for getting this info or
can I access the data in this current form?
Brian Allen