Interface SqlEndpointBuilderFactory.SqlBuilders

    • Method Detail

      • 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:query Path 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:query Path 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 name
        path - query
        Returns:
        the dsl builder