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

FireBirdConnectionParameters.DatabaseName Property

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

Namespace: DevExpress.DataAccess.ConnectionParameters

Assembly: DevExpress.DataAccess.v18.2.dll

Declaration

public string DatabaseName { get; set; }

Property Value

Type Description
String

A String that specifies the name of the database that contains the required data.

Remarks

The DatabaseName property is in effect only if the connection is established to a database server (the FireBirdConnectionParameters.ConnectionType property is set to FireBirdConnectionType.ServerBased).

Use the FireBirdConnectionParameters.ServerName property to specify the name of the server.

To provide user credentials, use the FireBirdConnectionParameters.UserName and FireBirdConnectionParameters.Password properties.

See Also