Instructs the component to quote all identifiers, even if its not necessary according to specific SQL syntax rules.
Syntax
'Declaration
Public Property QuoteAllIdentifiers As System.Boolean
'Usage
Dim instance As BaseSQLBuilder
Dim value As System.Boolean
instance.QuoteAllIdentifiers = value
value = instance.QuoteAllIdentifiers
public System.bool QuoteAllIdentifiers {get; set;}
public: __property System.bool get_QuoteAllIdentifiers();
public: __property void set_QuoteAllIdentifiers(
System.bool value
);
Example
if set to false, the result SQL will be: "Northwind.dbo.[Order details]";
if true: "[Northwind].[dbo].[Order details]".
See Also