ConnectionRetryCount
- Last Updated: March 21, 2023
- 1 minute read
- DataDirect Connectors
- JDBC
- Microsoft SQL Server 6.0
- Documentation
Purpose
The number of times the driver retries connection attempts to the primary database server, and if specified, alternate servers until a successful connection is established.
Valid values
0 | x
where:
- x
- is a positive integer that represents the number of retries.
Behavior
If set to 0, the driver does not try to reconnect after the initial
unsuccessful attempt.
If set to x, the driver retries connection attempts the specified number of times. If a connection is not established during the retry attempts, the driver returns an exception that is generated by the last database server to which it tried to connect.
Notes
- If an application sets a login timeout value (for example, using DataSource.loginTimeout or DriverManager.loginTimeout), and the login timeout expires, the driver ceases connection attempts.
- The ConnectionRetryDelay property specifies the wait interval, in seconds, to occur between retry attempts.
- If MultiSubnetFailover is enabled and the connection attempt fails, the driver will attempt to connect two more times, regardless of the ConnectionRetryCount setting.
Example
If this property is set to 2 and alternate servers are specified using the
AlternateServers property, the driver retries the list of servers (primary and alternate)
twice after the initial retry attempt.
Data source method
public Integer
getConnectionRetryCount()
public void
setConnectionRetryCount(Integer)
Default
5
Data type
Int