public static interface SqlComponentBuilderFactory.SqlComponentBuilder extends ComponentBuilder<org.apache.camel.component.sql.SqlComponent>
| Modifier and Type | Method and Description |
|---|---|
default SqlComponentBuilderFactory.SqlComponentBuilder |
basicPropertyBinding(boolean basicPropertyBinding)
Whether the component should use basic property binding (Camel 2.x)
or the newer property binding with additional capabilities.
|
default SqlComponentBuilderFactory.SqlComponentBuilder |
bridgeErrorHandler(boolean bridgeErrorHandler)
Allows for bridging the consumer to the Camel routing Error Handler,
which mean any exceptions occurred while the consumer is trying to
pickup incoming messages, or the likes, will now be processed as a
message and handled by the routing Error Handler.
|
default SqlComponentBuilderFactory.SqlComponentBuilder |
dataSource(DataSource dataSource)
Sets the DataSource to use to communicate with the database.
|
default SqlComponentBuilderFactory.SqlComponentBuilder |
lazyStartProducer(boolean lazyStartProducer)
Whether the producer should be started lazy (on the first message).
|
default SqlComponentBuilderFactory.SqlComponentBuilder |
usePlaceholder(boolean usePlaceholder)
Sets whether to use placeholder and replace all placeholder
characters with sign in the SQL queries.
|
build, build, doSetProperty, registerdefault SqlComponentBuilderFactory.SqlComponentBuilder dataSource(DataSource dataSource)
javax.sql.DataSource type.
Group: commondefault SqlComponentBuilderFactory.SqlComponentBuilder bridgeErrorHandler(boolean bridgeErrorHandler)
boolean type.
Default: false
Group: consumerdefault SqlComponentBuilderFactory.SqlComponentBuilder lazyStartProducer(boolean lazyStartProducer)
boolean type.
Default: false
Group: producerdefault SqlComponentBuilderFactory.SqlComponentBuilder basicPropertyBinding(boolean basicPropertyBinding)
boolean type.
Default: false
Group: advanceddefault SqlComponentBuilderFactory.SqlComponentBuilder usePlaceholder(boolean usePlaceholder)
boolean type.
Default: true
Group: advancedApache Camel