Skip to main content
A newer version of this page is available. .

FireBirdConnectionParameters Class

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

Namespace: DevExpress.DataAccess.ConnectionParameters

Assembly: DevExpress.DataAccess.v18.2.dll

Declaration

public class FireBirdConnectionParameters :
    DataConnectionParametersBase,
    IConnectionPagePort

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.

If a connection is established to an embedded database (the FireBirdConnectionParameters.ConnectionType property is set to FireBirdConnectionType.Embedded), use the following properties to specify connection parameters.

FireBirdConnectionParameters.FileName

Gets or sets the path to a database file.

FireBirdConnectionParameters.UserName

Gets or sets the user name used for authentication.

FireBirdConnectionParameters.Password

Gets or sets the password used for authentication.

If the connection is established to a database server (the FireBirdConnectionParameters.ConnectionType property is set to FireBirdConnectionType.ServerBased), use the following properties to specify the connection parameters.

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.

To learn more about the use of classes that provide data connection parameters, see DataConnectionParametersBase.

Inheritance

Object
DataConnectionParametersBase
FireBirdConnectionParameters
See Also