Active Query Builder 2 .NET Edition reference
QuoteAllIdentifiers Property (SQLGenerationOptions)



Instructs the component to quote all identifiers.
Syntax
'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;}
public: __property System.bool get_QuoteAllIdentifiers();
public: __property void set_QuoteAllIdentifiers( 
   System.bool value
);

Property Value

true to quote all identifiers; false to apply quotation as needed.
Remarks

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.

See Also

Reference

SQLGenerationOptions Class
SQLGenerationOptions Members

 

 


© Copyright 2005-2012 ActiveDBSoft. All rights reserved.

Send Feedback