作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我写了一个例程来批量导入记录。它不起作用,我认为问题是我在这里没有任何等待,但我不知道如何或在哪里放置它。由于我项目的性质,我不想要方法是一个异步方法。我只是使用异步来通知更新。
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 通知,除非您一直使用 async
。 See this Q&A获取更多信息。
关于c# - BulkCopy.WriteToServerAsync() 无法导入记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45821343/
我写了一个例程来批量导入记录。它不起作用,我认为问题是我在这里没有任何等待,但我不知道如何或在哪里放置它。由于我项目的性质,我不想要方法是一个异步方法。我只是使用异步来通知更新。 public
我是一名优秀的程序员,十分优秀!