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

  • Thread starter Thread starter Dileep Dasa
  • Start date Start date
Status
Not open for further replies.
D

Dileep Dasa

Guest
It is little unclear what "progress data" mean. I assume you are trying to move data from Progress database table to a 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).

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