|
UseEscapedNameAttributeUseAnsiQuotes Property
|
Gets or sets flag that determines if double quotes should be used as the identifier delimiter,
per SQL-99 standard, regardless of database type. Defaults to true except for MySQL.
Namespace: GSF.Data.ModelAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.253-beta+ffb7163c9e3b771705bc5b9aa3f09870f2cb9e2c
Syntaxpublic bool UseAnsiQuotes { get; set; }
Public Property UseAnsiQuotes As Boolean
Get
Set
public:
property bool UseAnsiQuotes {
bool get ();
void set (bool value);
}
member UseAnsiQuotes : bool with get, set
function get_UseAnsiQuotes();
function set_UseAnsiQuotes(value);
View SourceProperty Value
Boolean
Remarks
If true, ANSI standard double-quotes will be used for escaping the identifier; otherwise,
the escaping identifier will be based on the connected database type.
See Also