You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/com/aceql/jdbc/commons/driver/util/DriverPropertyInfoBuilder.java
+16-1
Original file line number
Diff line number
Diff line change
@@ -21,10 +21,13 @@ public class DriverPropertyInfoBuilder {
21
21
publicstaticfinalStringGZIP_RESULT = "Boolean to say if the ResultSet is Gzipped before download. Defaults to true.";
22
22
publicstaticfinalStringCLOB_CHARSET = "Name of the charset to use when reading a CLOB content with the ResultSet methods. Defaults to null.";
23
23
24
-
25
24
publicstaticfinalStringDEFINES_THE_RESULT_SET_META_DATA_POLICY = "Defines the ResultSet MetaData policy. Says if the ResultSet MetaData is to be downloaded along with the ResultSet. Possible values are \"on\" and \"off\". Defaults to \"on\".";
26
25
privatestaticfinalStringCLOB_WRITE_CHARSET = "Name of the charset to use when writing a CLOB content with the PreparedStatement streaming methods. Defaults to \"UTF-8\".";
27
26
27
+
publicstaticfinalStringMAX_RETRIES = "Maximum number of retries for connecting to the remote server. Defaults to 3.";
28
+
publicstaticfinalStringRETRY_DELAY = "Delay in milliseconds between retries. Defaults to 3000.";
29
+
30
+
28
31
/**
29
32
* Build a new DriverPropertyInfo with the passed property
30
33
*
@@ -122,6 +125,18 @@ public List<DriverPropertyInfo> build(Properties info) {
0 commit comments