ConnectionElement Enumeration |
Enum which specifies element definitions which are used to store database connection information.
This information is passed to a driver which can use this information to construct a connectionstring
Namespace:
SD.LLBLGen.Pro.DBDriverCore
Assembly:
SD.LLBLGen.Pro.DBDriverCore (in SD.LLBLGen.Pro.DBDriverCore.dll) Version: 5.3.0.0 (5.3.0)
Syntax public enum ConnectionElement
Public Enumeration ConnectionElement
Members
| Member name | Value | Description |
---|
| ServerName | 0 |
The server name / IP number / TNSName of the database server to connect to. Used by all drivers except Access
|
| CatalogName | 1 |
The database / catalog to work with in catalog oriented systems
|
| SchemaName | 2 |
The schema to work with in schema oriented systems.
|
| UseWindowsAuthentication | 3 |
If available, integrated/windows security should be used.
|
| UserID | 4 |
User ID specified.
|
| Password | 5 |
Password specified
|
| PortNumber | 6 |
Portnumber to connect to.
|
| DatabaseFile | 7 |
Database file to connect to. Used by file based databases like Access, firebird/Interbase
|
| SecurityFile | 8 |
Security file which contains security info for the driver. Access specific.
|
| CharSet | 9 |
Charset to use.
|
| DatabasePassword | 10 |
Used in Access for the database file password to use.
|
| Encoding | 11 |
Encoding to use.
|
| SslMode | 12 |
SSL mode to use.
|
| Protocol | 13 |
Protocol to use.
|
| UseEncryption | 14 |
Will specify that the client will use encryption using the connection string.
|
| UseTransientErrorRecovery | 15 |
Will use a transient error recovery strategy. Useful with cloud databases.
|
See Also