开发者

Import csv file into SQL Server using ASP.NET and C#

开发者 https://www.devze.com 2023-01-29 14:30 出处:网络
What\'s the best way to import a small csv file into SQL Server us开发者_运维技巧ing an ASP.NET form with C#? I know there are many ways to do this, but I\'m wondering which classes would be best to r

What's the best way to import a small csv file into SQL Server us开发者_运维技巧ing an ASP.NET form with C#? I know there are many ways to do this, but I'm wondering which classes would be best to read the file and how to insert into the database. Do I read the file into a DataTable and then use the SqlBulkCopy class, or just insert the data using ADO.NET? Not sure which way is best. I'm after the simplest solution and am not concerned about scalability or performance as the csv files are tiny.

Using ASP.NET 4.0, C# 4.0 and SQL Server 2008 R2.


The DataTable and the SqlBulkCopy classes will do just fine and that is the way I would prefer to do it, in order to prevent that someday these tiny CSV files become larger, your program will be ready for it, as ADO.NET might add some overhead by treating a single row at a time.

EDIT #1

What's the best way to get from csv file to datatable?

The CSV file format is nothing more than a text file. As such, you might want to read it using the File.ReadAllLines Method (String), which will return a string[]. Then, you may add to your DataTable using the DataRow class or your prefered way.

Consider adding your columns when defining your DataTable so that it knows its structure when adding rows.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号