我想将Excel中的数据插入SQL Server。我编写了代码但是没有从Excel中读取值:
System.Data.DataTable dt = new System.Data.DataTable();
Workbook WB = Globals.ThisAddIn.Application.ActiveWorkbook;
Sheets worksheets = WB.Worksheets;
lastrow = WB.ActiveSheet.UsedRange.Rows.Count;
for(int i = 2; i<= lastrow; i++)
{
cmd.CommandText = ("INSERT Table_1 (emp_no,emp_name,salary) values (WB.Cells[i , 1] , WB.Cells[i , 2] , WB.Cells[i , 3]))");
}
答案 0 :(得分:1)
for(int i = 2; I <= lastrow; i++)
{
cmd.CommandText = ($"INSERT INTO Table_1 (emp_no,emp_name,salary) VALUES ({WB.Cells[i, 1]}, {WB.Cells[i, 2]}, {WB.Cells[i, 3]}))");
}
请不要使用此功能,并阅读SQL injection了解为什么不使用它!
帮自己一个忙,改用parametrized queries。