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
ProductVersionsPlatforms
.NET2.1, 3.1, 6Windows, Linux, MacOS
.NET Framework4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8Windows
.NET Standard2.0Windows, Linux, MacOS
See Also

Reference

TdConnectionStringBuilder Class
TdConnectionStringBuilder Members