Name |
Default Value |
Description |
---|---|---|
|
|
The default maximum number of rows that can be read by a polling query. |
|
|
Sets additional options on the |
|
|
Sets whether to use JDBC 4/3 column label/name semantics. You can use this
option to turn it |
|
|
Camel will set the autoCommit on the JDBC connection to be false, commit the change after executing the statement and reset the autoCommit flag of the connection at the end, if the resetAutoCommit is true. If the JDBC connection doesn't support resetting the autoCommit flag, you can set the resetAutoCommit flag to be false, and Camel will not try to reset the autoCommit flag. |
|
|
Camel 2.12: Whether to allow using named parameters in the queries. |
|
|
Camel 2.12: Allows to plugin to use a custom
|
|
|
Camel 2.12: Set this option to
|
|
|
Camel 2.12.1: Make the output of the producer to SelectList as List of Map, or SelectOne as single Java object in the following way: a) If the query has only single column, then that JDBC Column object is returned. (such as SELECT COUNT( * ) FROM PROJECT will return a Long object. b) If the query has more than one column, then it will return a Map of that result. c) If the outputClass is set, then it will convert the query result into an Java bean object by calling all the setters that match the column names. It will assume your class has a default constructor to create instance with. d) If the query resulted in more than one rows, it throws an non-unique result exception. Camel 2.14.0: New |
|
|
Camel 2.12.1: Specify the full package and class name to use as conversion when outputType=SelectOne. |
|
|
Camel 2.12.1: To use a custom
|