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#编程.异常处理(Exception Handling Statements)
    rabbitMQ 消息队列
    非技术问题
    sql优化
    数控机床,模具
    nginx 服务器
    zuul 网关
    分布式配置中心
    hystrix 解决服务雪崩效应
    负载均衡
  • 原文地址:https://www.cnblogs.com/dekevin/p/4772241.html
Copyright © 2011-2022 走看看