DbDataAdapter.TerminateBatching 方法

定义

结束 DbDataAdapter 的批处理。

protected:
 virtual void TerminateBatching();
protected virtual void TerminateBatching ();
abstract member TerminateBatching : unit -> unit
override this.TerminateBatching : unit -> unit
Protected Overridable Sub TerminateBatching ()

例外

该适配器不支持批处理。

注解

DbDataAdapter中,此方法引发 NotSupportedException。 继承自 DbDataAdapter 的类会重写此方法,以提供对批处理的支持。

继承者说明

此方法受到保护,旨在供.NET Framework数据提供程序使用。

如果继承自 DbDataAdapter 的类支持批处理,该类将替代此方法。 此方法使类有机会释放为支持批处理而分配的任何资源。 例如, 类可能会解除分配保存批处理中命令的数据结构。

适用于

另请参阅