corelibraries-devexpress-dot-dataaccess-dot-connectionparameters-82027dc0.md
Contains parameters used to establish a connection to a Firebird database server or embedded database.
Namespace : DevExpress.DataAccess.ConnectionParameters
Assembly : DevExpress.DataAccess.v25.2.dll
NuGet Package : DevExpress.DataAccess
public class FireBirdConnectionParameters :
DataConnectionParametersBase,
IConnectionPagePort,
IConnectionPageClientLibrary
Public Class FireBirdConnectionParameters
Inherits DataConnectionParametersBase
Implements IConnectionPagePort,
IConnectionPageClientLibrary
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.
Use the following properties to specify connection parameters to an embedded database (the FireBirdConnectionParameters.ConnectionType property is set to FireBirdConnectionType.Embedded):
|
FireBirdConnectionParameters.FileName
|
Gets or sets the path to a database file.
| |
FireBirdConnectionParameters.ClientLibrary
|
Gets or sets the path to a Firebird 3.0+ client library.
| |
FireBirdConnectionParameters.UserName
|
Gets or sets the user name used for authentication.
| |
FireBirdConnectionParameters.Password
|
Gets or sets the password used for authentication.
|
Use the following properties to specify connection parameters to a database server (the FireBirdConnectionParameters.ConnectionType property is set to FireBirdConnectionType.ServerBased):
|
FireBirdConnectionParameters.ServerName
|
Gets or sets the name of the Firebird server to which the connection should be established.
| |
FireBirdConnectionParameters.PortNumber
|
Specifies the port number for connecting to FireBird databases.
| |
FireBirdConnectionParameters.DatabaseName
|
Gets or sets the name of the database that contains the required data.
| |
FireBirdConnectionParameters.UserName
|
Gets or sets the user name used for authentication.
| |
FireBirdConnectionParameters.Password
|
Gets or sets the password used for authentication.
|
See DataConnectionParametersBase for information about the use of classes that provide data connection parameters.
Object DataConnectionParametersBase FireBirdConnectionParameters
See Also