Forum Post: RE: How to export progress data as an XML?

  • Thread starter Thread starter herveyq
  • Start date Start date
Status
Not open for further replies.
H

herveyq

Guest
Thanks Dileep Thanks, Gil On 15/09/2014 3:13 PM, "Dileep Dasa" bounce-ddasa@community.progress.com wrote: RE: How to export progress data as an XML? Reply by Dileep Dasa It is little unclear what "progress data" mean. I assume you are trying to move data from Progress database table to an XML file. For this, you can use WRITE-XML() method. Please see documentation for more information on WRITE-XML(). Here is a quick example: DEF TEMP-TABLE stt LIKE customer. FOR EACH customer: CREATE stt. BUFFER-COPY customer TO stt. END. TEMP-TABLE stt:WRITE-XML("file", "custdata.xml", TRUE, ?, ?, FALSE, FALSE). Stop receiving emails on this subject. Flag this post as spam/abuse.

Continue reading...
 
Status
Not open for further replies.
Back
Top