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


C# SqlCommandBuilder類代碼示例

本文整理匯總了C#中System.Data.SqlClient.SqlCommandBuilder的典型用法代碼示例。如果您正苦於以下問題:C# SqlCommandBuilder類的具體用法?C# SqlCommandBuilder怎麽用?C# SqlCommandBuilder使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: SelectSqlRows

public static DataSet SelectSqlRows(string connectionString,
    string queryString, string tableName)
{
    using (SqlConnection connection = new SqlConnection(connectionString))
    {
        SqlDataAdapter adapter = new SqlDataAdapter();
        adapter.SelectCommand = new SqlCommand(queryString, connection);
        SqlCommandBuilder builder = new SqlCommandBuilder(adapter);

        connection.Open();

        DataSet dataSet = new DataSet();
        adapter.Fill(dataSet, tableName);

        //code to modify data in DataSet here

        builder.GetUpdateCommand();

        //Without the SqlCommandBuilder this line would fail
        adapter.Update(dataSet, tableName);

        return dataSet;
    }
}
開發者ID:.NET開發者,項目名稱:System.Data.SqlClient,代碼行數:24,代碼來源:SqlCommandBuilder

示例2: new SqlCommandBuilder

//引入命名空間
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.SqlClient,代碼行數:45,代碼來源:SqlCommandBuilder


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