FireBirdConnectionParameters(String, String, String, String) Constructor
Initializes a new instance of the FireBirdConnectionParameters class with the specified parameters required to connect to a Firebird database server.
Namespace: DevExpress.DataAccess.ConnectionParameters
Assembly: DevExpress.DataAccess.v24.1.dll
NuGet Packages: DevExpress.DataAccess, DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap
Declaration
public FireBirdConnectionParameters(
string serverName,
string databaseName,
string userName,
string password
)
Parameters
Name | Type | Description |
---|---|---|
serverName | String | A String that specifies the name of the Firebird server to which the connection should be established. This value is assigned to the FireBirdConnectionParameters.ServerName property. |
databaseName | String | A String that specifies the name of the database that contains the required data. This value is assigned to the FireBirdConnectionParameters.DatabaseName property. |
userName | String | A String that specifies the user name used to authenticate to the Firebird server. This value is assigned to the FireBirdConnectionParameters.UserName property. |
password | String | A String that specifies the password used to authenticate to the Firebird server. This value is assigned to the FireBirdConnectionParameters.Password property. |