使用SqlCommand提交数据:命令的Transaction 属性尚未初始化
使用SqlCommand提交数据:命令的Transaction 属性尚未初始化出错信息:如果分配给命令的连接位于本地挂起事务中,ExecuteNonQuery 要求命令拥有事务。命令的 Transaction 属性尚未初始化。
解决方案:
SqlCommand cmd = new SqlCommand(SQL, trans.Connection);
改为:
SqlCommand cmd = new SqlCommand(SQL, trans.Connection,
trans);
//事务参数
扫一扫加作者微信