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


C# SqlParameter.SourceVersion屬性代碼示例

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


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

示例1: CreateSqlParameterSourceVersion

static void CreateSqlParameterSourceVersion()
{
    SqlParameter parameter = new SqlParameter("Description", SqlDbType.VarChar, 88);
    parameter.SourceColumn = "Description";
    parameter.SourceVersion = DataRowVersion.Current;
}
開發者ID:.NET開發者,項目名稱:System.Data.SqlClient,代碼行數:6,代碼來源:SqlParameter.SourceVersion

示例2: Main

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

   class PropagateChanges {
      static void Main(){
         string connString = "server=(local)\\SQLEXPRESS;database=MyDatabase;Integrated Security=SSPI";
         string qry = @"select * from employee ";
         string upd = @"update employee set firstname = @firstname where id = @id";

         SqlConnection conn = new SqlConnection(connString);

         try {
            SqlDataAdapter da = new SqlDataAdapter();
            da.SelectCommand = new SqlCommand(qry, conn);

            DataSet ds = new DataSet();   
            da.Fill(ds, "employee");

            DataTable dt = ds.Tables["employee"];

            dt.Rows[0]["firstname"] = "W";

            foreach (DataRow row in dt.Rows){
               Console.WriteLine(
                  "{0} {1}",
                  row["firstname"].ToString().PadRight(15),
                  row["lastname"].ToString().PadLeft(25));
            }

            // Update employees
            SqlCommand cmd = new SqlCommand(upd, conn);
            cmd.Parameters.Add("@firstname",SqlDbType.NVarChar,15, "firstname");
            SqlParameter parm = cmd.Parameters.Add("@id",SqlDbType.Int,4,"id");
            parm.SourceVersion = DataRowVersion.Original;
            da.UpdateCommand = cmd;
            da.Update(ds, "employee");
         } catch(Exception e) {
            Console.WriteLine("Error: " + e);
         } finally {
            conn.Close();
         }
      }  
   }
開發者ID:C#程序員,項目名稱:System.Data.SqlClient,代碼行數:45,代碼來源:SqlParameter.SourceVersion


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