FireBirdConnectionParameters.ConnectionType Property
Gets or sets whether to connect to a database server or an embedded database.
Namespace: DevExpress.DataAccess.ConnectionParameters
Assembly: DevExpress.DataAccess.v24.2.dll
NuGet Package: DevExpress.DataAccess
#Declaration
public FireBirdConnectionType ConnectionType { get; set; }
#Property Value
Type | Description |
---|---|
Fire |
A Fire |
Available values:
Name | Description |
---|---|
Server |
A connection is established to a Firebird database server. |
Embedded | The connection is established to an embedded Firebird database. |
#Remarks
If a connection is established to an embedded database (the ConnectionType property is set to FireBirdConnectionType.Embedded), use the following properties to specify connection parameters.
Gets or sets the path to a database file. | |
Gets or sets the user name used for authentication. | |
Gets or sets the password used for authentication. |
If the connection is established to a database server (the ConnectionType property is set to FireBirdConnectionType.ServerBased), use the following properties to specify the connection parameters.
Gets or sets the name of the Firebird server to which the connection should be established. | |
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. |