Connection property descriptions
- Last Updated: May 13, 2025
- 1 minute read
- DataDirect Connectors
- JDBC
- TeamCity 6.0
- Documentation
You can use connection properties to customize the driver for your
environment. This section organizes connection properties according to functionality. You can
use connection properties with either the JDBC DriverManager
or a JDBC data source. For a DriverManager connection, a
property is expressed as a key value pair and takes the form property=value.
For a data source connection, a property is expressed as a JDBC method and takes the form
setproperty(value).
Password is the same as password.setUser("abc@defcorp.com").The following tables describe the connection properties by functionality.
Authentication properties
The following table summarizes properties used for Basic and Bearer Token authentication methods.
| Property | Data Source Method | Default |
|---|---|---|
| ServerName | getServerName()
|
No default value |
| AuthenticationMethod | getAuthenticationMethod()
|
Basic |
| Password | getPassword()
|
No default value |
| SecurityToken | getSecurityToken()
|
No default value |
| User | getUser()
|
No default value |
Proxy server properties
The following table summarizes proxy server connection properties.
| Property | Data Source Method | Default |
|---|---|---|
| ProxyHost | getProxyHost()
|
No default value |
| ProxyPassword | getProxyPassword()
|
No default value |
| ProxyPort | getProxyPort()
|
0 which means the default
is determined by the ProxyHost property.For HTTP URLs: For HTTPS URLs: |
| ProxyUser | getProxyUser()
|
No default value |
Timeout properties
The following table summarizes timeout connection properties.
| Property | Data Source Method | Default |
|---|---|---|
| WSRetryCount | getWsRetryCount()
|
5 |
| WSTimeout | getWsTimeout()
|
120 (seconds) |
Additional properties
The following table summarizes additional connection properties.
| Property | Data Source Method | Default |
|---|---|---|
| DebugRecord | getDebugRecord()
|
0
(Disabled) |
| DefaultQueryOptions | getDefaultQueryOptions()
|
No default value |
| FetchSize | getFetchSize()
|
100
(rows) |
| LogConfigFile | getLogConfigFile()
|
ddlogging.properties |
| ReadAhead | getReadAheadThreads()
|
5 |
| SpyAttributes | getSpyAttributes()
|
No default value |
| StmtCallLimit | getStmtCallLimit()
|
0 |
| StmtCallLimitBehavior | getStmtCallLimitBehavior()
|
ErrorAlways |