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;  
     }
  • 相关阅读:
    C++11 Lambda表达式
    C++ 容器操作
    C/C++ 动态存储分配 malloc calloc realloc函数的用法与区别
    使用visual C++测试
    设计模式有感
    smartProgram学习笔记
    C++析构函数
    C++指针和引用
    Python机器学习笔记:常用评估模型指标的用法
    Python机器学习笔记:不得不了解的机器学习面试知识点(1)
  • 原文地址:https://www.cnblogs.com/dekevin/p/4772241.html
Copyright © 2011-2022 走看看