zoukankan      html  css  js  c++  java
  • .NET-DataColumn.DataType 属性

    public DataTable MakeDataTable(){
    
        DataTable myTable;
        DataRow myNewRow; 
        // Create a new DataTable.
        myTable = new DataTable("My Table");
    
        // Create DataColumn objects of data types.
        DataColumn colString = new DataColumn("StringCol");
        colString.DataType = System.Type.GetType("System.String");
        myTable.Columns.Add(colString); 
    
        DataColumn colInt32 = new DataColumn("Int32Col");
        colInt32.DataType = System.Type.GetType("System.Int32");
        myTable.Columns.Add(colInt32);
    
        DataColumn colBoolean = new DataColumn("BooleanCol");
        colBoolean.DataType = System.Type.GetType("System.Boolean");
        myTable.Columns.Add(colBoolean);
    
        DataColumn colTimeSpan = new DataColumn("TimeSpanCol");
        colTimeSpan.DataType = System.Type.GetType("System.TimeSpan");
        myTable.Columns.Add(colTimeSpan);
    
        DataColumn colDateTime = new DataColumn("DateTimeCol");
        colDateTime.DataType = System.Type.GetType("System.DateTime");
        myTable.Columns.Add(colDateTime);
    
        DataColumn colDecimal = new DataColumn("DecimalCol");
        colDecimal.DataType = System.Type.GetType("System.Decimal");
        myTable.Columns.Add(colDecimal);
    
        DataColumn colByteArray = new DataColumn("ByteArrayCol");
        colByteArray.DataType = System.Type.GetType("System.Byte[]");
        myTable.Columns.Add(colByteArray);
    
    
        // Populate one row with values.
        myNewRow = myTable.NewRow();
    
        myNewRow["StringCol"] = "Item Name";
        myNewRow["Int32Col"] = 2147483647;
        myNewRow["BooleanCol"] = true;
        myNewRow["TimeSpanCol"] = new TimeSpan(10,22,10,15,100);
        myNewRow["DateTimeCol"] = System.DateTime.Today;
        myNewRow["DecimalCol"] = 64.0021;
        myNewRow["ByteArrayCol"] = new Byte[] { 1, 5, 120 };
        myTable.Rows.Add(myNewRow);
        return myTable;  
     }
  • 相关阅读:
    收音机原理
    S3C2440之存储控制器学习记录
    南校十二天集训游记
    题解 洛谷 P2179 【[NOI2012]骑行川藏】
    题解 SP3734 【PERIODNI
    题解 洛谷 P4177 【[CEOI2008]order】
    题解 CF613D 【Kingdom and its Cities】
    题解 UVA11865 【Stream My Contest】
    题解 洛谷 P2046 【[NOI2010]海拔】
    Spring Bean管理(注解的方式)
  • 原文地址:https://www.cnblogs.com/dekevin/p/4772241.html
Copyright © 2011-2022 走看看