Sqlbulkcopy doesn't seem to work for me

半腔热情 提交于 2019-12-05 10:03:53

You need to specify a column mapping, as you don't have the same number of columns in the DataTable and the destination table.

You can do it like this:

sbc.ColumnMappings.Add("EmpId", "EmpId");
sbc.ColumnMappings.Add("FromDate", "FromDate");
// and so on, with the rest of the columns; and after that comes
sbc.WriteToServer(dt);
sbc.Close();
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!