DataObjectIdentifierFormat 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 to format a data object identifier as a string when converting from a set of identifier parts.
This enumeration supports a bitwise combination of its member values.
public enum class DataObjectIdentifierFormat
[System.Flags]
public enum DataObjectIdentifierFormat
[<System.Flags>]
type DataObjectIdentifierFormat =
Public Enum DataObjectIdentifierFormat
- Inheritance
-
DataObjectIdentifierFormat
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No specialized formatting is applied to the string. |
WithQuotes | 1 | Where necessary, the identifier is enclosed in quotation marks using the correct date-source-specific quoting mechanism. Specifying this option should always cause a valid identifier that can be parsed by the data source to be created. |
ForDisplay | 2 | Format the identifier as a string to be used for display purposes rather than for passing to the data source. For example, this might format the identifier of the table 'authors' owned by Fred as 'authors (Fred)'. |