dotConnect for DB2 Documentation
Devart.Data.DB2 Namespace / DB2ConnectionStringBuilder Class / ExecutionMode Property

In This Topic
    ExecutionMode Property
    In This Topic
    Determines whether previously captured statements should be executed statically for client optimization using pureQuery.
    Syntax
    'Declaration
     
    Public Property ExecutionMode As String
    public string ExecutionMode {get; set;}

    Property Value

    Can be either "static" or "dynamic".

    "static" means that statements that are captured and packaged in the database are executed statically, statements that have not been captured will be executed dynamically.

    "dynamic" means that all statements will be processed dynamically.

    Remarks
    An error is thrown if CaptureMode="on" while ExecutionMode="STATIC".
    See Also