Class FirebirdOptions

Namespace
DbExport.Providers.Firebird
Assembly
DbExport.Api.dll

Represents configuration options for Firebird database operations.

public class FirebirdOptions
Inheritance
FirebirdOptions
Inherited Members

Properties

CharacterSets

Gets a list of supported character sets for Firebird databases.

public static string[] CharacterSets { get; }

Property Value

string[]

DataDirectory

Gets or sets the file system path to the directory where Firebird database files will be created and stored. This property is essential for specifying the location of the database files during database operations.

public string DataDirectory { get; set; }

Property Value

string

DefaultCharSet

Gets or sets the default character set to be used for encoding text data.

public string DefaultCharSet { get; set; }

Property Value

string

ForcedWrites

Gets or sets a value indicating whether to force writes to disk.

public static bool ForcedWrites { get; set; }

Property Value

bool

Overwrite

Gets or sets a value indicating whether to overwrite existing files when exporting data.

public static bool Overwrite { get; set; }

Property Value

bool

PageSize

Gets or sets the page size for writing data to disk.

public static int PageSize { get; set; }

Property Value

int

Methods

ToMarkdown()

Converts the FirebirdOptions properties and their current values into a Markdown table representation.

public string ToMarkdown()

Returns

string

A string containing a Markdown-formatted table with the FirebirdOptions properties and their values.