Connection property descriptions
- Last Updated: August 29, 2024
- 2 minute read
- DataDirect Connectors
- JDBC
- Microsoft Sharepoint 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,
setProxyPassword("secret"). - 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,
AuthenticationMethodis the same asauthenticationmethod. - 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:ProxyPassword={hello }orProxyPassword={{hello}}.
The following tables describe the connection properties by functionality.
- OAuth 2.0 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 |
| RedirectURI | getRedirUri()
|
No default value |
| RefreshToken | getRefreshToken()
|
No default value |
| Scope | getOauthScope()
|
No default value |
| ServiceURL | getServiceUrl()
|
No default value |
| TokenURI | getOauthTokenUri()
|
No default value |
Mapping properties
The following table summarizes connection properties involved in mapping the SharePoint data model to a SQL model.
| Property | Data Source Method | Default |
|---|---|---|
| AuditColumns | getAuditColumns()
|
None |
| CreateMap | getCreateMap()
|
NotExist |
| KeywordConflictSuffix | getKeywordConflictSuffix()
|
No default value |
| RefreshSchema | getRefreshSchema()
|
false |
| SchemaMap | getSchemaMap()
|
Default value depends on environment |
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 |
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) |
| DateTimeZoneShift | getDateTimeZoneShift()
|
0 |
| 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 |