zoukankan      html  css  js  c++  java
  • 导出xml

    public static void main(Args _args)
    {
    XmlDocument doc;
    XmlElement nodeXml;
    XmlElement nodeTable;
    XmlElement nodeAccount;
    XmlElement nodeName;
    LedgerTable ledgerTable;
    #define.filename('<documents>\\accounts.xml')
    ;
    doc = XmlDocument::newBlank();
    nodeXml = doc.createElement('xml');
    doc.appendChild(nodeXml);
    while select ledgerTable
    {
    nodeTable = doc.createElement(tablestr(LedgerTable));
    nodeTable.setAttribute(
    fieldstr(LedgerTable, RecId),
    int642str(ledgerTable.RecId));
    nodeXml.appendChild(nodeTable);
    nodeAccount = doc.createElement(
    fieldstr(LedgerTable, AccountNum));
    nodeAccount.appendChild(
    doc.createTextNode(ledgerTable.AccountNum));
    nodeTable.appendChild(nodeAccount);
    nodeName = doc.createElement(
    fieldstr(LedgerTable, AccountName));
    nodeName.appendChild(
    doc.createTextNode(ledgerTable.AccountName));
    nodeTable.appendChild(nodeName);
    }
    doc.save(#filename);
    }

  • 相关阅读:
    GOF之单例模式
    C#面向对象设计模式纵横谈课堂笔记
    Oracle事务
    Oracle游标
    pl/sql(一)
    pl/sql(二)
    pl/sql(三)
    Oracle用户管理
    Oracle视图
    Oracle函数
  • 原文地址:https://www.cnblogs.com/perock/p/2350313.html
Copyright © 2011-2022 走看看