DataTable 批量插入SqlServer資料庫 使用:SqlBulkCopy

來源:互聯網
上載者:User

標籤:des   style   blog   color   使用   os   io   資料   

 

簡單使用:     private void UpdateTitle(DataTable dt)        {                       if (dt != null && dt.Rows.Count > 0)            {                using (SqlBulkCopy sbc = new SqlBulkCopy(SqlHelper.connectionString))                {                    sbc.BatchSize = dt.Rows.Count;//每批次運算元量                    sbc.BulkCopyTimeout = 60;//操作允許的逾時時間 單位:秒 (逾時則事務不提交)                    sbc.DestinationTableName = "TB_product_NewTitle";  //資料庫對應表名                    sbc.WriteToServer(dt);                }            }        }
如果出現 DataTable中的欄位和資料庫的欄位不對應的異常資訊,需要手動的為DataTable的列 和 資料庫中的列 綁定
注意:dataColumns的資料類型,一定要和資料庫一樣,不然各種報錯欄位也區分大小寫,一定要注意  /// <summary>        /// 批次更新資料到資料庫(DataTable列結構保持和資料庫表一致)        /// </summary>        /// <param name="dt"></param>        public static void BulkCopyData(Queue<QueueMessage> myQ, int SiteID,int max)        {            if (myQ != null && myQ.Count > 0)            {                using (SqlBulkCopy sbc = new SqlBulkCopy(SqlHelper.con))                {                    QueueMessage qm = new QueueMessage();                    DataTable dt = new DataTable();                    dt.Columns.AddRange(              new DataColumn[] {               new DataColumn("Sender", typeof(Int32)),               new DataColumn("Receiver", typeof(Int32)),               new DataColumn("Content", typeof(string)),               new DataColumn("CreateTime", typeof(DateTime)),               new DataColumn("SenderType", typeof(int)) 
            }); int qcount=0; if (max > 0) qcount = max; else qcount = myQ.Count(); for (int i = 0; i < qcount; i++) { qm = myQ.Dequeue() as QueueMessage; DataRow dr = dt.NewRow(); dr["Sender"] = qm.Sender; dr["Receiver"] = qm.Receiver; dr["Content"] = qm.Content; dr["CreateTime"] = qm.CreateTime; dr["SenderType"] = qm.SenderType; dt.Rows.Add(dr); }
            //把DataTable的列名和資料庫的列名綁定 sbc.ColumnMappings.Add("Sender", "Sender"); sbc.ColumnMappings.Add("Receiver", "Receiver"); sbc.ColumnMappings.Add("Content", "Content"); sbc.ColumnMappings.Add("CreateTime", "CreateTime"); sbc.ColumnMappings.Add("SenderType", "SenderType"); sbc.BatchSize = dt.Rows.Count;//每批次運算元量 sbc.BulkCopyTimeout = 60;//操作允許的逾時時間 單位:秒 (逾時則事務不提交) sbc.DestinationTableName = "TB_Message_" + SiteID;//資料庫對應表名 sbc.WriteToServer(dt); } } }

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.