| Package | Description |
|---|---|
| org.apache.camel.builder.endpoint.dsl |
| Modifier and Type | Interface and Description |
|---|---|
static interface |
SqlEndpointBuilderFactory.AdvancedSqlEndpointBuilder
Advanced builder for endpoint for the SQL component.
|
| Modifier and Type | Method and Description |
|---|---|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.SqlEndpointConsumerBuilder.advanced() |
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.alwaysPopulateStatement(boolean alwaysPopulateStatement)
If enabled then the populateStatement method from
org.apache.camel.component.sql.SqlPrepareStatementStrategy is always
invoked, also if there is no expected parameters to be prepared.
|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.alwaysPopulateStatement(String alwaysPopulateStatement)
If enabled then the populateStatement method from
org.apache.camel.component.sql.SqlPrepareStatementStrategy is always
invoked, also if there is no expected parameters to be prepared.
|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.exceptionHandler(org.apache.camel.spi.ExceptionHandler exceptionHandler)
To let the consumer use a custom ExceptionHandler.
|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.exceptionHandler(String exceptionHandler)
To let the consumer use a custom ExceptionHandler.
|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.exchangePattern(org.apache.camel.ExchangePattern exchangePattern)
Sets the exchange pattern when the consumer creates an exchange.
|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.exchangePattern(String exchangePattern)
Sets the exchange pattern when the consumer creates an exchange.
|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.parametersCount(int parametersCount)
If set greater than zero, then Camel will use this count value of
parameters to replace instead of querying via JDBC metadata API.
|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.parametersCount(String parametersCount)
If set greater than zero, then Camel will use this count value of
parameters to replace instead of querying via JDBC metadata API.
|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.placeholder(String placeholder)
Specifies a character that will be replaced to in SQL query.
|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.pollStrategy(org.apache.camel.spi.PollingConsumerPollStrategy pollStrategy)
A pluggable org.apache.camel.PollingConsumerPollingStrategy allowing
you to provide your custom implementation to control error handling
usually occurred during the poll operation before an Exchange have
been created and being routed in Camel.
|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.pollStrategy(String pollStrategy)
A pluggable org.apache.camel.PollingConsumerPollingStrategy allowing
you to provide your custom implementation to control error handling
usually occurred during the poll operation before an Exchange have
been created and being routed in Camel.
|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.prepareStatementStrategy(Object prepareStatementStrategy)
Allows to plugin to use a custom
org.apache.camel.component.sql.SqlPrepareStatementStrategy to control
preparation of the query and prepared statement.
|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.prepareStatementStrategy(String prepareStatementStrategy)
Allows to plugin to use a custom
org.apache.camel.component.sql.SqlPrepareStatementStrategy to control
preparation of the query and prepared statement.
|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.processingStrategy(Object processingStrategy)
Allows to plugin to use a custom
org.apache.camel.component.sql.SqlProcessingStrategy to execute
queries when the consumer has processed the rows/batch.
|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.processingStrategy(String processingStrategy)
Allows to plugin to use a custom
org.apache.camel.component.sql.SqlProcessingStrategy to execute
queries when the consumer has processed the rows/batch.
|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel
is allowed to use asynchronous processing (if supported).
|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel
is allowed to use asynchronous processing (if supported).
|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.templateOptions(Map values)
Configures the Spring JdbcTemplate with the key/values from the Map.
|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.templateOptions(String key,
Object value)
Configures the Spring JdbcTemplate with the key/values from the Map.
|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.usePlaceholder(boolean usePlaceholder)
Sets whether to use placeholder and replace all placeholder
characters with sign in the SQL queries.
|
default SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointConsumerBuilder.usePlaceholder(String usePlaceholder)
Sets whether to use placeholder and replace all placeholder
characters with sign in the SQL queries.
|
Apache Camel