Skip to main content

FireBirdConnectionParameters(String, String, String) Constructor

Initializes a new instance of the FireBirdConnectionParameters class with the specified parameters required to connect to an embedded Firebird database.

Namespace: DevExpress.DataAccess.ConnectionParameters

Assembly: DevExpress.DataAccess.v23.2.dll

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

Declaration

public FireBirdConnectionParameters(
    string fileName,
    string userName,
    string password
)

Parameters

Name Type Description
fileName String

A String that specifies the path to the Firebird database file. This value is assigned to the FireBirdConnectionParameters.FileName property.

userName String

A String that specifies the user name used for authentication. This value is assigned to the FireBirdConnectionParameters.UserName property.

password String

A String that specifies the password used for authentication. This value is assigned to the FireBirdConnectionParameters.Password property.

See Also