Click or drag to resize

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.8.0.0 (5.8.21.0208)
Syntax
public enum ConnectionElement
Members
  Member nameValueDescription
ServerName0 The server name / IP number / TNSName of the database server to connect to. Used by all drivers except Access
CatalogName1 The database / catalog to work with in catalog oriented systems
SchemaName2 The schema to work with in schema oriented systems.
UseWindowsAuthentication3 If available, integrated/windows security should be used.
UserID4 User ID specified.
Password5 Password specified
PortNumber6 Portnumber to connect to.
DatabaseFile7 Database file to connect to. Used by file based databases like Access, firebird/Interbase
SecurityFile8 Security file which contains security info for the driver. Access specific.
CharSet9 Charset to use.
DatabasePassword10 Used in Access for the database file password to use.
Encoding11 Encoding to use.
SslMode12 SSL mode to use.
Protocol13 Protocol to use.
UseEncryption14 Will specify that the client will use encryption using the connection string.
UseTransientErrorRecovery15 Will use a transient error recovery strategy. Useful with cloud databases.
ProjectID16 The project id to use.
InstanceID17 The instance id to use.
CurrencyScale18 The currencyscale to use for currency values.
UseAzureActiveDirectory19 Whether azure active directory should be used (true) or not (false).
ConnectionDataConfigType20 The type of connection data config to use. This is an untyped value, which resolves to an enum that has to be defined at the driver. Can mean different things depending on the driver used. E.g. for oracle ODP.NET, it's used to specify whether TSNName or cli-less config data is used.
ServiceName21 The name of the service to connect to. Mainly used for Oracle cli-less (ODP.NET, managed), where one has to specify server and service.
See Also