Interface SqlEndpointBuilderFactory.SqlBuilders
-
- All Known Subinterfaces:
EndpointBuilderFactory
- All Known Implementing Classes:
EndpointRouteBuilder,EndpointRouteConfigurationBuilder
- Enclosing interface:
- SqlEndpointBuilderFactory
public static interface SqlEndpointBuilderFactory.SqlBuilders
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default SqlEndpointBuilderFactory.SqlHeaderNameBuildersql()SQL (camel-sql) Perform SQL queries using Spring JDBC.default SqlEndpointBuilderFactory.SqlEndpointBuildersql(String path)SQL (camel-sql) Perform SQL queries using Spring JDBC.default SqlEndpointBuilderFactory.SqlEndpointBuildersql(String componentName, String path)SQL (camel-sql) Perform SQL queries using Spring JDBC.
-
-
-
Method Detail
-
sql
default SqlEndpointBuilderFactory.SqlHeaderNameBuilder sql()
SQL (camel-sql) Perform SQL queries using Spring JDBC. Category: database,sql Since: 1.4 Maven coordinates: org.apache.camel:camel-sql- Returns:
- the dsl builder for the headers' name.
-
sql
default SqlEndpointBuilderFactory.SqlEndpointBuilder sql(String path)
SQL (camel-sql) Perform SQL queries using Spring JDBC. Category: database,sql Since: 1.4 Maven coordinates: org.apache.camel:camel-sql Syntax:sql:queryPath parameter: query (required) Sets the SQL query to perform. You can externalize the query by using file: or classpath: as prefix and specify the location of the file.- Parameters:
path- query- Returns:
- the dsl builder
-
sql
default SqlEndpointBuilderFactory.SqlEndpointBuilder sql(String componentName, String path)
SQL (camel-sql) Perform SQL queries using Spring JDBC. Category: database,sql Since: 1.4 Maven coordinates: org.apache.camel:camel-sql Syntax:sql:queryPath parameter: query (required) Sets the SQL query to perform. You can externalize the query by using file: or classpath: as prefix and specify the location of the file.- Parameters:
componentName- to use a custom component name for the endpoint instead of the default namepath- query- Returns:
- the dsl builder
-
-