FireBirdConnectionParameters Class
Contains parameters used to establish a connection to a Firebird database server or embedded database.
Namespace: DevExpress.DataAccess.ConnectionParameters
Assembly: DevExpress.DataAccess.v24.1.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):
Gets or sets the path to a database file. | |
Gets or sets the path to a Firebird 3.0+ client library. | |
Gets or sets the user name used for authentication. | |
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):
Gets or sets the name of the Firebird server to which the connection should be established. | |
Specifies the port number for connecting to FireBird databases. | |
Gets or sets the name of the database that contains the required data. | |
Gets or sets the user name used for authentication. | |
Gets or sets the password used for authentication. |
See DataConnectionParametersBase for information about the use of classes that provide data connection parameters.