Skip to main content

FireBirdConnectionParameters Class

Contains parameters used to establish a connection to a Firebird database server or embedded database.

Namespace: DevExpress.DataAccess.ConnectionParameters

Assembly: DevExpress.DataAccess.v23.2.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap

Declaration

public class FireBirdConnectionParameters :
    DataConnectionParametersBase,
    IConnectionPagePort,
    IConnectionPageClientLibrary

Remarks

The FireBirdConnectionParameters class instances provide basic parameters required to establish a Firebird database connection.

Use the FireBirdConnectionParameters.ConnectionType property to specify whether to connect to an embedded database or a database server.

Connect to an Embedded Database

Use the following properties to specify connection parameters to an embedded database (the FireBirdConnectionParameters.ConnectionType property is set to FireBirdConnectionType.Embedded):

FireBirdConnectionParameters.FileName

Gets or sets the path to a database file.

FireBirdConnectionParameters.ClientLibrary

Gets or sets the path to a Firebird 3.0+ client library.

FireBirdConnectionParameters.UserName

Gets or sets the user name used for authentication.

FireBirdConnectionParameters.Password

Gets or sets the password used for authentication.

Connect to a Database Server

Use the following properties to specify connection parameters to a database server (the FireBirdConnectionParameters.ConnectionType property is set to FireBirdConnectionType.ServerBased):

FireBirdConnectionParameters.ServerName

Gets or sets the name of the Firebird server to which the connection should be established.

FireBirdConnectionParameters.PortNumber

Specifies the port number for connecting to FireBird databases.

FireBirdConnectionParameters.DatabaseName

Gets or sets the name of the database that contains the required data.

FireBirdConnectionParameters.UserName

Gets or sets the user name used for authentication.

FireBirdConnectionParameters.Password

Gets or sets the password used for authentication.

See DataConnectionParametersBase for information about the use of classes that provide data connection parameters.

Inheritance

Object
DataConnectionParametersBase
FireBirdConnectionParameters
See Also