在C#中将列表数据插入mySQL数据库的有效方法

时间:2012-04-30 16:29:31

标签: c# mysql database loops

我有csv文件,我想将其转储到数据库中。所以我创建了一个循环的文件,在循环内部我创建了一个名为data for each line的列表

StreamReader file = new StreamReader(itemChecked.ToString());//read the file

while ((line = file.ReadLine())  != null)
{
    if (start_flag == true) // start processing the numbers, get the real data
    {
        List<string> data = new List<string>();
        data.AddRange(line.Replace("\"", "").Split(',').AsEnumerable());
    }
}
到目前为止一切顺利。

现在我想将列表数据插入数据库。这个清单很大。我不想像这样输入每一个:

insert into table1 (tablenames) values (a, b, c on and on)

如何循环列表并将数据插入数据库?

2 个答案:

答案 0 :(得分:0)

首先,您需要使用the ADO.NET Driver for MySQL (Connector/NET)连接到数据库。

其次,您需要打开与数据库的连接,然后插入一些数据:

var connection = new MySqlConnection();
connection.ConnectionString =
   "server=localhost;"
    + "database=DBNAME;"
    + "uid=USERNAME;"
    + "password=PASSWORD;";

connection.Open();

foreach(var datum in data) 
{
    var command = connection.CreateCommand();
    command.CommandText =
        "insert into table1 (tablenames)"
        + " values "
        + "(a, b, c on and on)";

    var result = command.ExecuteReader();
}

我的例子是based off this article。这不是一个完美的解决方案,但它应该让你开始。您可能希望look into MySQL Transactions将插入批处理为有效分组(取决于数据大小,一次可能为100-1000。)

答案 1 :(得分:0)

我会使用bulkcopy一次导入csv文件中的所有数据。您可以在这里找到样品:

http://www.codeproject.com/Articles/30705/C-CSV-Import-Export

我希望这就是你要找的东西

问候