DataObjectIdentifierFormat Enum

Definition

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

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)'.

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.

Applies to