Skip to main content
All docs
V26.1
  • CommandPoolBehavior Enum

    Contains values that specify the command pool behavior.

    Namespace: DevExpress.Xpo.DB

    Assembly: DevExpress.Data.v26.1.dll

    NuGet Package: DevExpress.Data

    Declaration

    public enum CommandPoolBehavior

    Members

    Name Description
    None

    No command pooling.

    TransactionNoPrepare

    Pooling of commands in the scope of the database transaction. The Prepare() method is not called for commands.

    Transaction

    Pooling of prepared (or compiled) commands in the scope of the database transaction.

    ConnectionSession

    Pooling of prepared (or compiled) commands in the scope of the database transaction.

    See Also