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
<ObfuscationAttribute(Feature := "renaming", Exclude := true)>
Public Enumeration JdbcConnectionStringComponent
[ObfuscationAttribute(Feature = L"renaming", Exclude = true)]
public enum class JdbcConnectionStringComponent
[<ObfuscationAttribute(Feature = "renaming", Exclude = true)>]
type JdbcConnectionStringComponent
Members
| Member name | Value | Description |
---|
| None | 0 |
The property is not to be used in creating a connection string.
|
| Host | 1 |
The host name or IP address of the database server.
|
| Port | 2 |
The port number on which the database server is listening.
|
| DatabaseName | 3 |
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.
|
| Parameters | 4 |
Additional parameters for the connection, such as authentication details or configuration settings which are sent as key-value pairs in the connection string.
|
| DiscreteUsername | 5 |
Discrete user name that will be sent to VDD separately from the connection string.
|
| DiscretePassword | 6 |
Discrete password that will be sent to VDD separately from the connection string.
|
See Also