Connection property descriptions
- Last Updated: January 5, 2026
- 2 minute read
- DataDirect Connectors
- JDBC
- Microsoft Dynamics 365 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).
- In a JDBC data source, string values must be enclosed in double quotation
marks, for example,
setUser("abc@defcorp.com"). - The data type listed for each connection property is the Java data type used for the property value in a JDBC data source.
- Connection property names are case-insensitive. For example,
Passwordis the same aspassword. - For connection properties that support string values, use the following
escape sequence to specify values containing leading or trailing spaces and
curly brackets:
{value}. For example:User={hello }orPassword={{hello}}.
The following tables describe the connection properties by functionality.
- OAuth 2.0 properties
- NTLM properties
- Mapping properties
- Proxy server properties
- Web service properties
- Statement pooling properties
- Additional properties
OAuth 2.0 properties
The following table summarizes properties used for OAuth 2.0 authentication. The OAuth 2.0 properties you must specify depend on the grant type used in your environment. If you are unsure of the grant type or its requirements, contact your system administrator. For details on supported grant types, see OAuth 2.0 authentication.
| Property | Data Source Method | Default |
|---|---|---|
| AccessToken | getAccessToken()
|
No default value |
| AuthenticationMethod | getAuthenticationMethod()
|
OAuth2 |
| AuthURI | getOauthAuthUri()
|
No default value |
| ClientID | getClientId()
|
No default value |
| ClientSecret | getClientSecret()
|
No default value |
| RefreshToken | getRefreshToken()
|
No default value |
| Scope | getOauthScope()
|
No default value |
| ServiceURL | getServiceUrl()
|
No default value |
| TokenURI | getOauthTokenUri()
|
No default value |
NTLM properties
The following table summarizes properties used for NTLM.
| Property | Data Source Method | Default |
|---|---|---|
| AuthenticationMethod | getAuthenticationMethod()
|
No default value |
| NTLMDomain | getNtlmDomain()
|
No default value |
| Password | getPassword()
|
No default value |
| ServiceURL | getServiceUrl()
|
No default value |
| User | getUser()
|
No default value |
Mapping properties
The following table summarizes connection properties involved in mapping the Dynamics 365 data model to a SQL model.
| Property | Data Source Method | Default |
|---|---|---|
| CreateMap | getCreateMap()
|
OnChange |
| CustomPrefix | getCustomPrefix()
|
Include |
| CustomPrefixName | getCustomPrefixName()
|
new_ |
| KeywordConflictSuffix | getKeywordConflictSuffix()
|
No default value |
| RefreshSchema | getRefreshSchema()
|
false |
| SchemaMap | getSchemaMap()
|
Default value depends on environment |
| ShowNameColumns | getShowNameColumns()
|
false |
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 |
Web service properties
The following table summarizes Web service connection properties.
| Property | Data Source Method | Default |
|---|---|---|
| StmtCallLimit | getStmtCallLimit()
|
0 (no limit) |
| StmtCallLimitBehavior | getStmtCallLimitBehavior()
|
ErrorAlways
|
| WSCompressData | getWsCompressData()
|
Compress |
| WSTimeout |
|
|
Statement pooling properties
The following table summarizes statement pooling connection properties.
| Property | Data Source Method | Default |
|---|---|---|
| ImportStatementPool | getImportStatementPool()
|
No default value |
| MaxPooledStatements | getMaxPooledStatements()
|
0
|
| RegisterStatementPoolMonitorMBean | getRegisterStatementPoolMonitorMbean()
|
false
|
Additional properties
The following table summarizes additional connection properties.
| Property | Data Source Method | Default |
|---|---|---|
| BatchUpdateChunkSize | getBatchUpdateChunkSize()
|
200 |
| ConvertNull | getConvertNull()
|
true (data type check is performed if column
value is null) |
| CrossCompany | getCrossCompany()
|
false |
| FetchSize | getFetchSize()
|
100
(rows) |
| InitializationString | getInitializationString()
|
No default value |
| InsensitiveResultSetBufferSize | getInsensitiveResultsetBufferSize()
|
2048 (KB of memory) |
| LogConfigFile | getLogConfigFile()
|
ddlogging.properties |
| ReadOnly | getReadOnly()
|
false |
| SpyAttributes | getSpyAttributes()
|
No default value |
| TransactionMode | getTransactionMode()
|
NoTransactions |