IdentifierCase 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 how identifiers are treated by the data source when searching the system catalog.
public enum class IdentifierCase
public enum IdentifierCase
type IdentifierCase =
Public Enum IdentifierCase
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Unknown | 0 | The data source has ambiguous rules regarding identifier case and cannot discern this information. |
Insensitive | 1 | The data source ignores identifier case when searching the system catalog. The identifiers "ab" and "AB" will match. |
Sensitive | 2 | The data source distinguishes identifier case when searching the system catalog. The identifiers "ab" and "AB" will not match. |
Remarks
Identifiers may be either quoted or unquoted.