| Package | Description |
|---|---|
| org.apache.camel.builder.endpoint | |
| org.apache.camel.builder.endpoint.dsl |
| Modifier and Type | Method and Description |
|---|---|
static SqlEndpointBuilderFactory.SqlEndpointBuilder |
StaticEndpointBuilders.sql(String path)
SQL (camel-sql)
Perform SQL queries using Spring JDBC.
|
static SqlEndpointBuilderFactory.SqlEndpointBuilder |
StaticEndpointBuilders.sql(String componentName,
String path)
SQL (camel-sql)
Perform SQL queries using Spring JDBC.
|
| Modifier and Type | Method and Description |
|---|---|
default SqlEndpointBuilderFactory.SqlEndpointBuilder |
SqlEndpointBuilderFactory.SqlEndpointBuilder.allowNamedParameters(boolean allowNamedParameters)
Whether to allow using named parameters in the queries.
|
default SqlEndpointBuilderFactory.SqlEndpointBuilder |
SqlEndpointBuilderFactory.SqlEndpointBuilder.allowNamedParameters(String allowNamedParameters)
Whether to allow using named parameters in the queries.
|
default SqlEndpointBuilderFactory.SqlEndpointBuilder |
SqlEndpointBuilderFactory.AdvancedSqlEndpointBuilder.basic() |
default SqlEndpointBuilderFactory.SqlEndpointBuilder |
SqlEndpointBuilderFactory.SqlEndpointBuilder.dataSource(Object dataSource)
Sets the DataSource to use to communicate with the database.
|
default SqlEndpointBuilderFactory.SqlEndpointBuilder |
SqlEndpointBuilderFactory.SqlEndpointBuilder.dataSource(String dataSource)
Sets the DataSource to use to communicate with the database.
|
default SqlEndpointBuilderFactory.SqlEndpointBuilder |
SqlEndpointBuilderFactory.SqlEndpointBuilder.dataSourceRef(String dataSourceRef)
Deprecated.
|
static SqlEndpointBuilderFactory.SqlEndpointBuilder |
SqlEndpointBuilderFactory.endpointBuilder(String componentName,
String path) |
default SqlEndpointBuilderFactory.SqlEndpointBuilder |
SqlEndpointBuilderFactory.SqlEndpointBuilder.outputClass(String outputClass)
Specify the full package and class name to use as conversion when
outputType=SelectOne.
|
default SqlEndpointBuilderFactory.SqlEndpointBuilder |
SqlEndpointBuilderFactory.SqlEndpointBuilder.outputHeader(String outputHeader)
Store the query result in a header instead of the message body.
|
default SqlEndpointBuilderFactory.SqlEndpointBuilder |
SqlEndpointBuilderFactory.SqlEndpointBuilder.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.SqlEndpointBuilder |
SqlEndpointBuilderFactory.SqlEndpointBuilder.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.SqlEndpointBuilder |
SqlEndpointBuilderFactory.SqlEndpointBuilder.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.SqlEndpointBuilder |
SqlEndpointBuilderFactory.SqlEndpointBuilder.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.SqlEndpointBuilder |
SqlEndpointBuilderFactory.SqlBuilders.sql(String path)
SQL (camel-sql)
Perform SQL queries using Spring JDBC.
|
default SqlEndpointBuilderFactory.SqlEndpointBuilder |
SqlEndpointBuilderFactory.SqlBuilders.sql(String componentName,
String path)
SQL (camel-sql)
Perform SQL queries using Spring JDBC.
|
Apache Camel