| Package | Description |
|---|---|
| org.apache.camel.builder.endpoint.dsl |
| Modifier and Type | Interface and Description |
|---|---|
static interface |
SqlEndpointBuilderFactory.SqlEndpointBuilder
Builder for endpoint for the SQL component.
|
| Modifier and Type | Method and Description |
|---|---|
default SqlEndpointBuilderFactory.SqlEndpointProducerBuilder |
SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.allowNamedParameters(boolean allowNamedParameters)
Whether to allow using named parameters in the queries.
|
default SqlEndpointBuilderFactory.SqlEndpointProducerBuilder |
SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.allowNamedParameters(String allowNamedParameters)
Whether to allow using named parameters in the queries.
|
default SqlEndpointBuilderFactory.SqlEndpointProducerBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointProducerBuilder.basic() |
default SqlEndpointBuilderFactory.SqlEndpointProducerBuilder |
SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.batch(boolean batch)
Enables or disables batch mode.
|
default SqlEndpointBuilderFactory.SqlEndpointProducerBuilder |
SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.batch(String batch)
Enables or disables batch mode.
|
default SqlEndpointBuilderFactory.SqlEndpointProducerBuilder |
SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.dataSource(Object dataSource)
Sets the DataSource to use to communicate with the database.
|
default SqlEndpointBuilderFactory.SqlEndpointProducerBuilder |
SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.dataSource(String dataSource)
Sets the DataSource to use to communicate with the database.
|
default SqlEndpointBuilderFactory.SqlEndpointProducerBuilder |
SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.dataSourceRef(String dataSourceRef)
Deprecated.
|
default SqlEndpointBuilderFactory.SqlEndpointProducerBuilder |
SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.lazyStartProducer(boolean lazyStartProducer)
Whether the producer should be started lazy (on the first message).
|
default SqlEndpointBuilderFactory.SqlEndpointProducerBuilder |
SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.lazyStartProducer(String lazyStartProducer)
Whether the producer should be started lazy (on the first message).
|
default SqlEndpointBuilderFactory.SqlEndpointProducerBuilder |
SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.noop(boolean noop)
If set, will ignore the results of the SQL query and use the existing
IN message as the OUT message for the continuation of processing.
|
default SqlEndpointBuilderFactory.SqlEndpointProducerBuilder |
SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.noop(String noop)
If set, will ignore the results of the SQL query and use the existing
IN message as the OUT message for the continuation of processing.
|
default SqlEndpointBuilderFactory.SqlEndpointProducerBuilder |
SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.outputClass(String outputClass)
Specify the full package and class name to use as conversion when
outputType=SelectOne.
|
default SqlEndpointBuilderFactory.SqlEndpointProducerBuilder |
SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.outputHeader(String outputHeader)
Store the query result in a header instead of the message body.
|
default SqlEndpointBuilderFactory.SqlEndpointProducerBuilder |
SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.outputType(SqlEndpointBuilderFactory.SqlOutputType outputType)
Make the output of consumer or 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.
|
default SqlEndpointBuilderFactory.SqlEndpointProducerBuilder |
SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.outputType(String outputType)
Make the output of consumer or 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.
|
default SqlEndpointBuilderFactory.SqlEndpointProducerBuilder |
SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.separator(char separator)
The separator to use when parameter values is taken from message body
(if the body is a String type), to be inserted at # placeholders.
|
default SqlEndpointBuilderFactory.SqlEndpointProducerBuilder |
SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.separator(String separator)
The separator to use when parameter values is taken from message body
(if the body is a String type), to be inserted at # placeholders.
|
default SqlEndpointBuilderFactory.SqlEndpointProducerBuilder |
SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.useMessageBodyForSql(boolean useMessageBodyForSql)
Whether to use the message body as the SQL and then headers for
parameters.
|
default SqlEndpointBuilderFactory.SqlEndpointProducerBuilder |
SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.useMessageBodyForSql(String useMessageBodyForSql)
Whether to use the message body as the SQL and then headers for
parameters.
|
Apache Camel