使用DataAdapter批量更新的问题
我正在使用批量更新来更新 sql server 2005 数据库,如下所示,
cmd = new SqlCommand("update Table1 set column1 = @column1 where EmpNo = @EmpNo", con);
cmd.Parameters.Add(new SqlParameter("@column1", SqlDbType.VarChar));
cmd.Parameters["@column1"].SourceVersion = DataRowVersion.Current;
cmd.Parameters["@column1"].SourceColumn = "Column";
cmd.Parameters.Add(new SqlParameter("@EmpNo", SqlDbType.Int));
cmd.Parameters["@EmpNo"].SourceVersion = DataRowVersion.Current;
cmd.Parameters["@EmpNo"].SourceColumn = "EmpNo";
cmd.UpdatedRowSource = UpdateRowSource.None;
sqlDa = new SqlDataAdapter();
con.Open();
sqlDa.UpdateCommand =cmd;
sqlDa.UpdateBatchSize = 10;
sqlDa.Update(dt);
con.Close();
但数据未更新。我无法找出问题所在。感谢任何帮助。
I am updating the sql server 2005 database using batch update, as shown below
cmd = new SqlCommand("update Table1 set column1 = @column1 where EmpNo = @EmpNo", con);
cmd.Parameters.Add(new SqlParameter("@column1", SqlDbType.VarChar));
cmd.Parameters["@column1"].SourceVersion = DataRowVersion.Current;
cmd.Parameters["@column1"].SourceColumn = "Column";
cmd.Parameters.Add(new SqlParameter("@EmpNo", SqlDbType.Int));
cmd.Parameters["@EmpNo"].SourceVersion = DataRowVersion.Current;
cmd.Parameters["@EmpNo"].SourceColumn = "EmpNo";
cmd.UpdatedRowSource = UpdateRowSource.None;
sqlDa = new SqlDataAdapter();
con.Open();
sqlDa.UpdateCommand =cmd;
sqlDa.UpdateBatchSize = 10;
sqlDa.Update(dt);
con.Close();
But the data is not updated.I am unable to figure out what is the problem.Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议您在发出更新命令之前查看 dt。 确保某些行的 RowState 为“已更新”或“已添加”。 如果没有,您的(我假设)数据表中没有任何内容可以更新到数据库。
另外,尝试删除 .SourceVersion 属性设置操作。
如果一切看起来都不错,请在发出 .Update 之前开始对数据库进行跟踪。
这些只是尝试的几个第一步。
I would suggest that you look at the dt right before you issue the update command. Make sure there are some rows that have RowState of Updated or Added. If not, there's nothing in your (I'm assuming) DataTable to update to the database.
Also, try removing the .SourceVersion property set operation.
If everything looks good, start a trace on the database right before you issue the .Update.
These are just a couple first steps to try.
使用SqlDataAdapter 方法
(SqlCommand insertCommand=new SqlCommand(
"INSERT BulkLoadTable(FieldA, FieldB) VALUES (@FieldA, @FieldB)", connection))
{
insertCommand.Parameters.Add("@FieldA", SqlDbType.VarChar, 10, "FieldA");
}
SqlDataAdapter approach
using (SqlCommand insertCommand=new SqlCommand(
"INSERT BulkLoadTable(FieldA, FieldB) VALUES (@FieldA, @FieldB)", connection))
{
insertCommand.Parameters.Add("@FieldA", SqlDbType.VarChar, 10, "FieldA");
}