在ExecuteNonQuery()结束时继续获取SqlException语法错误;连接到本地网络上的SqlDb

时间:2018-05-18 15:18:39

标签: c# sql-server sql-insert

我在SqlException结束时不断收到ExecuteNonQuery();语法错误连接到本地网络中虚拟服务器上的SQL Server数据库。

Screenshot of Error Message

1 个答案:

答案 0 :(得分:1)

尝试将查询分配给变量,如下所示

string line1= (" Insert into PMRecordedSale("+.....)

SqlConnection myConnection = new SqlConnection();
myConnection = (SqlConnection)(Dts.Connections["DbConn"].AcquireConnection(Dts.Transaction) as SqlConnection);

SqlCommand myCommand = new SqlCommand(line1, myConnection);
myCommand.ExecuteNonQuery();