ActiveDatabaseSoftware.ActiveQueryBuilder Namespace > SQLGenerationOptions Class : QuoteAllIdentifiers Property |
'Declaration Public Property QuoteAllIdentifiers As System.Boolean
'Usage Dim instance As SQLGenerationOptions Dim value As System.Boolean instance.QuoteAllIdentifiers = value value = instance.QuoteAllIdentifiers
public System.bool QuoteAllIdentifiers {get; set;}
Quotation marks are determined according to the current SQL syntax.
Example (MS SQL Server syntax):
"Northwind.dbo.[Order details]" - property is set to false.
"[Northwind].[dbo].[Order details]" - property is set to true.
Note: This property controls object prefix skipping in the component's user interface. The same named property of the BaseSQLBuilder class deterimes the presence of object prefixes in resultant SQL query text.