Skip to main content
November 2, 2006
Question

Working with XML record-sets

  • November 2, 2006
  • 1 reply
  • 333 views
Hello,

I started working on a project with a DBA that creates for me the stored procedures that I need.
The database is Oracle, and every SP returns an XML structure.

My question is, how to work with them? I didn't work with XML in Coldfusion to this point and I am a little confused about how to output the relevant data (that the SP returns).

Any lead would be greatly appreciated.
This topic has been closed for replies.

1 reply

Inspiring
November 2, 2006
If the XML structure is coming to you as a string, use the XMLParse() function to turn it into an XML structure that ColdFusion can work with. There are a number of other XML functions, including XMLSearch and XMLChildPos to get elements and display them.
November 4, 2006
Thanks for the reply.
That sure did the trick.
:)