Hello,
I have successfully connected and queried a Progress Open Edge database 10.2B and have dumped the data using <cfdump>. I have tried to use <cfoutput query> with out success.
Please see below,
<cfquery name="list" datasource="progress1>
SELECT "Employee"."Employee-ID","Employee"."Employee-Name"
FROM "sams"."BUB"."Employee"
Where "Employee"."Record-Active"='1'
ORDER BY "Employee"."Employee-Name"
</cfquery>
<CFDUMP query="list"> / Displays all of the fields from the select above.
When I try using <cfoutput> #"Employee"."Employee-ID"# </cfoutput>
I receive errors. I have tried with " and ' and with only # and many others.
Please advise if some one knows and has successfully displayed this data using <cfoutput>
Thanks,
TJ