JdbcConnectionStringComponent Enumeration

Java Connection String Component. e.g. jdbc:<subprotocol>://<host>:<port>//<database_name>?<parameters>

Namespace:  Dundas.BI.Data.DataProviders
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntax
[ObfuscationAttribute(Feature = "renaming", Exclude = true)]
public enum JdbcConnectionStringComponent
Members
  Member nameValueDescription
None0 The property is not to be used in creating a connection string.
Host1 The host name or IP address of the database server.
Port2 The port number on which the database server is listening.
DatabaseName3 The name of the specific database to connect to on the server which will be placed after the port number and slash e.g. jdbc:postgresql://localhost:5432/DATABASENAME. If database is to be placed as a parameter as a key=value pair, use Parameters instead.
Parameters4 Additional parameters for the connection, such as authentication details or configuration settings which are sent as key-value pairs in the connection string.
DiscreteUsername5 Discrete user name that will be sent to VDD separately from the connection string.
DiscretePassword6 Discrete password that will be sent to VDD separately from the connection string.
See Also