重大Bug 影响所有版本。 返回
C#论坛
老数据
2181
悬赏:5 飞吻
示例代码

执行的存储过程报错执行。再执行查询,会报找不到存储过程。
具体原因为漏 AdoProvider 执行SQL方法遗漏复位代码
//
if (this.OldCommandType != 0)
{
this.CommandType = this.OldCommandType;
this.IsClearParameters = this.OldClearParameters;
this.OldCommandType = 0;
this.OldClearParameters = false;
}
