Package com.hazelcast.jet.pipeline
Class JdbcPropertyKeys
- java.lang.Object
-
- com.hazelcast.jet.pipeline.JdbcPropertyKeys
-
public final class JdbcPropertyKeys extends java.lang.Object
This class defines property keys that can be passed to JDBC connector. In turn the JDBC connector uses these properties to change the JDBC connection's behavior
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
AUTO_COMMIT
Property key to be passed to specify auto commit mode of the JDBC connection For usage example seeSources.jdbc(String, String, Properties, FunctionEx)
methodstatic java.lang.String
FETCH_SIZE
Property key to be passed to specify fetch size of the JDBC connection For usage example seeSources.jdbc(String, String, Properties, FunctionEx)
method
-
-
-
Field Detail
-
FETCH_SIZE
public static final java.lang.String FETCH_SIZE
Property key to be passed to specify fetch size of the JDBC connection For usage example seeSources.jdbc(String, String, Properties, FunctionEx)
method- See Also:
- Constant Field Values
-
AUTO_COMMIT
public static final java.lang.String AUTO_COMMIT
Property key to be passed to specify auto commit mode of the JDBC connection For usage example seeSources.jdbc(String, String, Properties, FunctionEx)
method- See Also:
- Constant Field Values
-
-