zoukankan      html  css  js  c++  java
  • 获取AX数据字典

    AX提供了很多反射类可以获取元数据信息,刚刚一个同事需要一个AX数据字典的列表,顺手写了一个,没啥技术含量,在这里做个备份,以便以后复制粘贴.
    static void DataDictionary(Args _args)
    {
        #AOT
        
    #define.FileName(@"d:\DataDictionary.txt")
        TextBuffer  tb 
    = new TextBuffer();
        TreeNode    treeNode 
    = TreeNode::findNode(#TablesPath);
        DictTable   dictTable;
        DictField   dictField;
        
    int         i;
        ;

        treeNode 
    = treeNode.AOTfirstChild();

        
    while(treeNode)
        
    {
            dictTable 
    = new DictTable(tableName2Id(treeNode.AOTname()));
            tb.appendText(dictTable.name()
    +' '+dictTable.label());
            tb.appendText(
    '\n');
            
    for(i=1;i<=dictTable.fieldCnt();i++)
            
    {
                dictField 
    = new DictField(dictTable.id(),dictTable.fieldCnt2Id(i));
                tb.appendText(
    '         '+dictField.name()+' ' + dictField.label());
                tb.appendText(
    '\n');
            }

            
            print treeNode.AOTname();
            treeNode 
    = treeNode.AOTnextSibling();
            
        }

        tb.toFile(#FileName);

    }

    当然也可以不用TreeNode,而用Dictionary得到表.
    static void DataDictionary2(Args _args)
    {
        #AOT
        
    #define.FileName(@"d:\DataDictionary.txt")
        TextBuffer  tb 
    = new TextBuffer();
        Dictionary  dictionary 
    = new Dictionary();

        DictTable   dictTable;
        DictField   dictField;
        
    int         i;
        
    int         j;
        ;

        
    for( i=1;i<= dictionary.tableCnt();i++)
        
    {
            dictTable 
    = new DictTable(dictionary.tableCnt2Id(i));
            tb.appendText(dictTable.name()
    +' '+dictTable.label());
            tb.appendText(
    '\n');
            
    for(j=1;j<=dictTable.fieldCnt();j++)
            
    {
                dictField 
    = new DictField(dictTable.id(),dictTable.fieldCnt2Id(j));
                tb.appendText(
    '         '+dictField.name()+' ' + dictField.label());
                tb.appendText(
    '\n');
            }


            print dictTable.name();
            
    //treeNode = treeNode.AOTnextSibling();

        }

        tb.toFile(#FileName);

    }
  • 相关阅读:
    METHODS OF AND APPARATUS FOR USING TEXTURES IN GRAPHICS PROCESSING SYSTEMS
    Display controller
    Graphics processing architecture employing a unified shader
    Graphics-Processing Architecture Based on Approximate Rendering
    Architectures for concurrent graphics processing operations
    Procedural graphics architectures and techniques
    DYNAMIC CONTEXT SWITCHING BETWEEN ARCHITECTURALLY DISTINCT GRAPHICS PROCESSORS
    Thermal zone monitoring in an electronic device
    System and method for dynamically adjusting to CPU performance changes
    Framework for Graphics Animation and Compositing Operations
  • 原文地址:https://www.cnblogs.com/Farseer1215/p/981148.html
Copyright © 2011-2022 走看看