gpt4 book ai didi

c# - BulkCopy.WriteToServerAsync() 无法导入记录

转载 作者:行者123 更新时间:2023-11-30 23:09:27 25 4
gpt4 key购买 nike

我写了一个例程来批量导入记录。它不起作用,我认为问题是我在这里没有任何等待,但我不知道如何或在哪里放置它。由于我项目的性质,我不想要方法是一个异步方法。我只是使用异步来通知更新。

    public int LoadTempFile(string fn, string tableName)
{
int retVal = 1;
// loads a CSV file into a temporary file of the same structure
StatusWindow sw = new StatusWindow("Loading Temp Files");
sw.Show();

try
{
string cs = GetConnectionString() + ";Asynchronous Processing=true;";
SqlConnection cxs = new SqlConnection(cs);
SqlCommand cmd = new SqlCommand("Truncate table " + tableName, cxs);
cxs.Open();
cmd.ExecuteNonQuery();
cmd.CommandTimeout = 640;
cxs.Close();

using (SqlBulkCopy copy = new SqlBulkCopy(cs))
{
using (StreamReader file = new StreamReader(fn))
{
CsvReader csv = new CsvReader(file, true);
copy.DestinationTableName = tableName;
copy.BulkCopyTimeout = 1640;
copy.NotifyAfter = 100;
copy.SqlRowsCopied += (sender, eventArgs) =>
{
sw.Update(eventArgs.RowsCopied.ToString() + " Records Copied");
};


try
{
copy.WriteToServerAsync(csv);
}
catch (SqlException ex)
{
MessageBox.Show("SQL Error Importing " + fn + Environment.NewLine + ex.Message);
}
catch (Exception ex)
{
MessageBox.Show("Error Importing " + fn + Environment.NewLine + ex.Message);
}

}
}
}
catch (Exception e)
{
MessageBox.Show("Error In Temp Files " + fn + Environment.NewLine + e.ToString());
retVal = 0;
}
finally
{ sw.Close(); }
return (retVal);
}

如果有任何帮助或意见,我将不胜感激。此外,也欢迎对我的编码风格或类似内容发表评论。

最佳答案

你是对的,这段代码不起作用的原因是你永远不会等待调用 copy.WriteToServerAsync(csv); 该方法返回一个 Task 对象

I don't want the method to be an async method. I am just using async to notify of updates.

获取通知并不以使用该方法的 async 版本为条件。其实微软自己的example SqlRowsCopied 使用同步版本,即 copy.WriteToServer(...)

使用 async 将无助于获取 UI 通知,除非您一直使用 asyncSee this Q&A获取更多信息。

关于c# - BulkCopy.WriteToServerAsync() 无法导入记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45821343/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com