zoukankan      html  css  js  c++  java
  • Add columns and Update columns for datatable

    //Detail Table
      public static void AddColumns(ref DataTable table)
      {
       table.Columns.Add("BusinessType",typeof(string));
       table.Columns.Add("BusinessUnit",typeof(string));
       table.Columns.Add("SourceCode",typeof(string));
       table.Columns.Add("UserName",typeof(string));
       table.Columns.Add("SONO",typeof(string));
       table.Columns.Add("CustomerCode_Market",typeof(string));
       table.Columns.Add("Customer_Plantid",typeof(string));
       table.Columns.Add("InvoiceNo",typeof(string));
       table.Columns.Add("OCNO_PLNo",typeof(string));
       table.Columns.Add("ItemNo",typeof(string));   
       table.Columns.Add("PCS",typeof(string));
       table.Columns.Add("CTNS",typeof(string));
       table.Columns.Add("CBM",typeof(string));
       table.Columns.Add("KGS",typeof(string));
       table.Columns.Add("ClosingDate",typeof(string));
       table.Columns.Add("JobNO",typeof(string));
       table.Columns.Add("DestinationID",typeof(string));
       table.Columns.Add("Status",typeof(string));
       

      }

      public static void updColumns(ref DataTable table)
      {
       table.Columns.Add("BusinessType",typeof(string));
       table.Columns.Add("BusinessUnit",typeof(string));
       table.Columns.Add("SourceCode",typeof(string));
       table.Columns.Add("UserName",typeof(string));
       table.Columns.Add("SONO",typeof(string));
       table.Columns.Add("CustomerCode_Market",typeof(string));
       table.Columns.Add("Customer_Plantid",typeof(string));
       table.Columns.Add("InvoiceNo",typeof(string));
       table.Columns.Add("OCNO_PLNo",typeof(string));
       table.Columns.Add("ItemNo",typeof(string));   
       table.Columns.Add("PCS",typeof(string));
       table.Columns.Add("CTNS",typeof(string));
       table.Columns.Add("CBM",typeof(string));
       table.Columns.Add("KGS",typeof(string));
       table.Columns.Add("ClosingDate",typeof(string));
       table.Columns.Add("JobNO",typeof(string));
       table.Columns.Add("DestinationID",typeof(string));
       table.Columns.Add("FID",typeof(string));
       table.Columns.Add("Status",typeof(string));

      }

  • 相关阅读:
    JAVA 网格布局管理器
    JAVA 流式布局管理器
    JAVA 边界布局管理器
    JAVA 图形界面 JFrame容器
    MySQL联合查询语法内联、左联、右联、全联
    ASP.NET MVC URL重写与优化(进阶篇)-继承RouteBase玩转URL
    ASP.NET MVC URL重写与优化(初级篇)-使用Global路由表定制URL
    MVC过滤器详解
    Dapper的基本使用
    JQuery fullcalender文档
  • 原文地址:https://www.cnblogs.com/zhangchenliang/p/1793379.html
Copyright © 2011-2022 走看看