Class OdfDatabaseDriverSettingsInfo
Represents a summary of the driver settings for a database connection (db:driver-settings).
表示資料庫連線的驅動程式設定摘要(db:driver-settings)。
public sealed class OdfDatabaseDriverSettingsInfo
- Inheritance
-
OdfDatabaseDriverSettingsInfo
- Inherited Members
Constructors
OdfDatabaseDriverSettingsInfo(bool?, bool?, bool?, string?, string?)
Represents a summary of the driver settings for a database connection (db:driver-settings).
表示資料庫連線的驅動程式設定摘要(db:driver-settings)。
public OdfDatabaseDriverSettingsInfo(bool? showDeleted, bool? isFirstRowHeaderLine, bool? parameterNameSubstitution, string? systemDriverSettings, string? baseDn)
Parameters
showDeletedbool?Whether to show deleted rows. / 是否顯示已刪除的資料列。
isFirstRowHeaderLinebool?Whether the first row is treated as a header line (applies to text/CSV drivers, etc.). / 第一列是否視為標頭列(適用文字/CSV 等驅動程式)。
parameterNameSubstitutionbool?Whether named parameters can be substituted with a
?placeholder. / 是否支援具名參數替代為?佔位符。systemDriverSettingsstringThe system driver settings string. / 系統驅動程式設定字串。
baseDnstringThe base DN setting for an LDAP connection. / LDAP 連線的 base DN 設定。
Properties
BaseDn
Gets the base DN setting for an LDAP connection. 取得 LDAP 連線的 base DN 設定。
public string? BaseDn { get; }
Property Value
IsFirstRowHeaderLine
Gets whether the first row is treated as a header line. 取得第一列是否視為標頭列。
public bool? IsFirstRowHeaderLine { get; }
Property Value
- bool?
ParameterNameSubstitution
Gets whether named parameters can be substituted with a ? placeholder.
取得是否支援具名參數替代為 ? 佔位符。
public bool? ParameterNameSubstitution { get; }
Property Value
- bool?
ShowDeleted
Gets whether to show deleted rows. 取得是否顯示已刪除的資料列。
public bool? ShowDeleted { get; }
Property Value
- bool?
SystemDriverSettings
Gets the system driver settings string. 取得系統驅動程式設定字串。
public string? SystemDriverSettings { get; }