ExecutionTypes Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum ExecutionTypes
[<System.Flags>]
type ExecutionTypes =
Public Enum ExecutionTypes
- Inheritance
-
ExecutionTypes
- Attributes
Fields
Name | Value | Description |
---|---|---|
Default | 0 | No statement execution options set |
NoCommands | 1 | Ignore the command terminator in the script. Execute as a single batch |
ContinueOnError | 2 | Batch execution continues on any error that does not break the connection |
NoExec | 4 | Execute SET NOEXEC ON prior to batch execution. Execute SET NOEXEC OFF after batch execution. |
ParseOnly | 8 | Execute SET PARSEONLY ON prior to batch execution. Execute SET PARSEONLY OFF after batch execution |
QuotedIdentifierOn | 16 | Execute SET QUOTED_IDENTIFIER ON prior to batch execution. Execute SET QUOTED_IDENTIFIER OFF after batch execution. |
Remarks
Statement execution constants are used to direct the behavior of the ExecuteImmediate method, altering execution behavior or interpretation of the statement submitted for execution