zoukankan      html  css  js  c++  java
  • dictTable

    static void Job222(Args _args)
    {
    DictRelation dictRelation;
    DictField externDictField;
    ItemCategoryTable ItemCategoryTable;
    DictField dictField;
    Counter c;
    DictTable dictTable;
    int i,k,n,h;
    ;
    dictTable = new DictTable(ItemCategoryTable.TableId);
    n =dictTable.fieldCnt();
    print "Number of fields in table: ", n;
    for(i=1; i<= n ; i++)
    {
    k=dictTable.fieldCnt2Id(i);
    if(dictTable.fieldName(k) == "Description")
    {
    print "The ", dictTable.fieldName(k), " field with Id=",k, " contains '", ItemCategoryTable.(k), "'";

    select ItemCategoryTable where ItemCategoryTable.(k) == "321";
    print ItemCategoryTable.Category;
    ItemCategoryTable.(k) = "6666";
    ItemCategoryTable.insert();
    }
    }

    pause;

    }

  • 相关阅读:
    Django REST framework 1
    爬虫基本原理
    QueryDict对象
    Django组件ModelForm
    MongoDB
    Algorithm
    BOM
    CSS
    Vue
    AliPay
  • 原文地址:https://www.cnblogs.com/KobeZhang/p/4858463.html
Copyright © 2011-2022 走看看