• 获取最根级EDT类型名称


    有时候需要修改某个扩展数据类型的属性,比如字段的长度等,这些属性只能在最根级的EDT类型上修改,所以需要找到最根级的EDT类型,这个小例子演示了如何根据当前表的字段获取其对应的最根级EDT类型。
    //Return the top extendtypeid,If error,return ''
    static ExtendedDataTypeName GetFinalExtendedType(TableId _tableId,FieldId _fieldId)
    {
        SysDictField        dictField;
        SysDictType         dictType;
        ExtendedTypeId      tmpExtendTypeId;
        ExtendedTypeId      finalExtendTypeId;

        ExtendedTypeId  getNextExtendedTypeId(DictType _dictType)
        
    {
            ;
            
    if(_dictType.extend())
                
    return _dictType.extend();
            
    else
                
    return 0;

        }

        ;

        
    if(_tableId && _fieldId)
            dictField 
    = new SysDictField(_tableId,_fieldId);
        
    else
            
    return '';

        dictType    
    =   new SysDictType(dictField.typeId());

        
    if(!dictType)
            
    return '';
            
        finalExtendTypeId 
    = dictType.id();

        
    while(true)
        
    {
            tmpExtendTypeId 
    = getNextExtendedTypeId(dictType);

            
    //if not '',find next extendTypeId
            if(tmpExtendTypeId)
            
    {
                finalExtendTypeId   
    =   tmpExtendTypeId;
                dictType            
    =  new DictType(finalExtendTypeId);
            }

            
    else
                
    break;



        }


        
    if(finalExtendTypeId)
            
    return  new dictType(finalExtendTypeId).Name();
        
    else
            
    return '';

    }

    附件是测试用例。
  • 相关阅读:
    OpenShift提供的免费.net空间 数据库 申请流程图文
    javascript实现全选全取消功能
    编写一个方法来获取页面url对应key的值
    面试题目产生一个int数组,长度为100,并向其中随机插入1-100,并且不能重复。
    面试宝典
    HDU 4619 Warm up 2 贪心或者二分图匹配
    HDU 4669 Mutiples on a circle 数位DP
    HDU 4666 最远曼哈顿距离
    HDU 4035 Maze 概率DP 搜索
    HDU 4089 Activation 概率DP
  • 原文地址:https://www.cnblogs.com/Farseer1215/p/885454.html
Copyright © 2020-2023  润新知