當前位置: 首頁>>代碼示例>>C#>>正文


C# DataTable.NewRow方法代碼示例

本文整理匯總了C#中System.Data.DataTable.NewRow方法的典型用法代碼示例。如果您正苦於以下問題:C# DataTable.NewRow方法的具體用法?C# DataTable.NewRow怎麽用?C# DataTable.NewRow使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Data.DataTable的用法示例。


在下文中一共展示了DataTable.NewRow方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: MakeDataTableAndDisplay

private void MakeDataTableAndDisplay()
   {
       // Create new DataTable and DataSource objects.
       DataTable table = new DataTable();

       // Declare DataColumn and DataRow variables.
       DataColumn column;
       DataRow row; 
       DataView view;

       // Create new DataColumn, set DataType, ColumnName and add to DataTable.    
       column = new DataColumn();
       column.DataType = System.Type.GetType("System.Int32");
       column.ColumnName = "id";
       table.Columns.Add(column);

       // Create second column.
       column = new DataColumn();
       column.DataType = Type.GetType("System.String");
       column.ColumnName = "item";
       table.Columns.Add(column);

       // Create new DataRow objects and add to DataTable.    
       for(int i = 0; i < 10; i++)
       {
           row = table.NewRow();
           row["id"] = i;
           row["item"] = "item " + i.ToString();
           table.Rows.Add(row);
       }

       // Create a DataView using the DataTable.
       view = new DataView(table);

       // Set a DataGrid control's DataSource to the DataView.
       dataGrid1.DataSource = view;
   }
開發者ID:.NET開發者,項目名稱:System.Data,代碼行數:37,代碼來源:DataTable.NewRow

示例2: DataTable.NewRow()

//引入命名空間
using System;
using System.Data;
using System.Data.SqlClient;

    public class CreatingDataTablesandPopulatingThem
    {
        static void Main(string[] args)
        {
            SqlConnection MyConnection = new SqlConnection(@"Data Source=(local); Initial Catalog = CaseManager; Integrated Security=true");
            SqlDataAdapter MyAdapter = new SqlDataAdapter("SELECT * FROM CaseInfo", MyConnection);
            DataSet MyDataSet = new DataSet();

            //Create a new DataTable
            DataTable MyTable2 = MyDataSet.Tables.Add("My2ndTable");

            //Adding Columns and Rows
            DataColumn myColumn = new DataColumn();

            myColumn.DataType = System.Type.GetType("System.Decimal");
            myColumn.AllowDBNull = false;
            myColumn.Caption = "Price";
            myColumn.ColumnName = "Price";
            myColumn.DefaultValue = 25;

            // Add the column to the table. 
            MyTable2.Columns.Add(myColumn);

            // Add 10 rows and set values. 
            DataRow myRow;

            for (int i = 0; i < 10; i++)
            {
                myRow = MyTable2.NewRow();
                myRow[0] = i + 1;

                // Be sure to add the new row to the DataRowCollection. 
                MyTable2.Rows.Add(myRow);
            }

            SqlCommandBuilder Builder = new SqlCommandBuilder(MyAdapter);

            MyAdapter.Update(MyDataSet, "My2ndTable");
        }
    }
開發者ID:C#程序員,項目名稱:System.Data,代碼行數:45,代碼來源:DataTable.NewRow


注:本文中的System.Data.DataTable.NewRow方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。