Class OdfDatabaseQueryInfo
Represents an ODB query description. 表示 ODB 查詢描述。
public sealed class OdfDatabaseQueryInfo
- Inheritance
-
OdfDatabaseQueryInfo
- Inherited Members
Constructors
OdfDatabaseQueryInfo(string, string, string?, string?, bool?)
Represents an ODB query description. 表示 ODB 查詢描述。
public OdfDatabaseQueryInfo(string name, string command, string? title, string? description, bool? escapeProcessing)
Parameters
namestringThe query name. / 查詢名稱。
commandstringThe query command or SQL content. / 查詢命令或 SQL 內容。
titlestringThe display title. / 顯示標題。
descriptionstringThe description text. / 描述文字。
escapeProcessingbool?The SQL escape processing setting. / SQL escape processing 設定。
Properties
Command
Gets the query command or SQL content. 取得查詢命令或 SQL 內容。
public string Command { get; }
Property Value
Description
Gets the description text. 取得描述文字。
public string? Description { get; }
Property Value
EscapeProcessing
Gets the SQL escape processing setting. 取得 SQL escape processing 設定。
public bool? EscapeProcessing { get; }
Property Value
- bool?
Name
Gets the query name. 取得查詢名稱。
public string Name { get; }
Property Value
Title
Gets the display title. 取得顯示標題。
public string? Title { get; }