StatementType 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.
Specifies the type of SQL query to be used by the OleDbRowUpdatedEventArgs, OleDbRowUpdatingEventArgs, SqlRowUpdatedEventArgs, or SqlRowUpdatingEventArgs class.
public enum class StatementType
public enum StatementType
type StatementType =
Public Enum StatementType
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Select | 0 | An SQL query that is a SELECT statement. |
Insert | 1 | An SQL query that is an INSERT statement. |
Update | 2 | An SQL query that is an UPDATE statement. |
Delete | 3 | An SQL query that is a DELETE statement. |
Batch | 4 | A SQL query that is a batch statement. |
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.