Send feedback on this topic.
Teradata.Client.Provider
RecoveryIntervalFactor Property



Teradata.Client.Provider Namespace > TdConnectionStringBuilder Class : RecoveryIntervalFactor Property
This represents the adjustment in the recovery interval period from the preceding interval period. The factor is an additive factor in seconds.
Syntax
'Declaration
 
Public Property RecoveryIntervalFactor As Integer
'Usage
 
Dim instance As TdConnectionStringBuilder
Dim value As Integer
 
instance.RecoveryIntervalFactor = value
 
value = instance.RecoveryIntervalFactor
public int RecoveryIntervalFactor {get; set;}
public:
property int RecoveryIntervalFactor {
   int get();
   void set (    int value);
}
Remarks

The RecoveryIntervalFactor will be added to the TdConnectionStringBuilder.RecoveryStartInterval to create a new period of time to delay attempts to reconnect to the Teradata database.

The TdConnectionStringBuilder.RecoveryMaximumInterval will limit the upper value of this period of time. For example, if the RecoveryStartInterval is 2, the RecoveryIntervalFactor is 2 and the RecoveryMaximumInterval is 32, the time periods generated internally will be 2, 4, 6, 8, until the maximum delay period of 32 is reached.

Default Value: 2

Requirements

Target Platforms: Windows 8.1, Windows 10, Windows Server 2012 R2, Windows Server 2016, Windows Server 2019

See Also

Reference

TdConnectionStringBuilder Class
TdConnectionStringBuilder Members