Skip to content

Commit 7f5b2a9

Browse files
authored
Update README.md
1 parent 8c3c4db commit 7f5b2a9

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
1-
# bulk-upload-into-sql-server-using-sqlbulkcopy-and-c-sharp
1+
# Bulk upload into SQL Server using SQLBulkCopy and C#
22
In this article I am going to write about SQLBulkCopy and its major properties and methods. This article will give you the code for high performance transfer of rows from XML file to SQL server with SQLBulkCopy and C#.
3+
4+
SQLBulkCopy introduced as part of .Net framework 2.0. It is simple and easy tool to transfer complicated or simple data from one data source to other. You can read data from any data source as long as that data can be load to DataTable or read by IDataReader and transfer the data with high performance to SQL Server using SQLBulkCopy.
5+
6+
## Files
7+
8+
1. **CustomerBulkUpload/Program.cs** - has all required code to read XML file and copy to SQL Server using SQLBulkCopy.
9+
1. **CustomerBulkUpload/BulkUploadOrders.xml** - XML file used by SQLBulkCopy to read data.
10+
11+
For more details visit - https://geeksarray.com/blog/bulk-upload-into-sql-server-using-sqlbulkcopy-and-c-sharp

0 commit comments

Comments
 (0)