Table of Contents

Class OdfDatabaseQueryInfo

Namespace
OdfKit.Database
Assembly
OdfKit.dll

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

name string

The query name. / 查詢名稱。

command string

The query command or SQL content. / 查詢命令或 SQL 內容。

title string

The display title. / 顯示標題。

description string

The description text. / 描述文字。

escapeProcessing bool?

The SQL escape processing setting. / SQL escape processing 設定。

Properties

Command

Gets the query command or SQL content. 取得查詢命令或 SQL 內容。

public string Command { get; }

Property Value

string

Description

Gets the description text. 取得描述文字。

public string? Description { get; }

Property Value

string

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

string

Title

Gets the display title. 取得顯示標題。

public string? Title { get; }

Property Value

string