Interface JdbcEndpointBuilderFactory.JdbcBuilders

    • Method Detail

      • jdbc

        default JdbcEndpointBuilderFactory.JdbcHeaderNameBuilder jdbc()
        JDBC (camel-jdbc) Access databases through SQL and JDBC. Category: database,sql Since: 1.2 Maven coordinates: org.apache.camel:camel-jdbc
        Returns:
        the dsl builder for the headers' name.
      • jdbc

        default JdbcEndpointBuilderFactory.JdbcEndpointBuilder jdbc​(String path)
        JDBC (camel-jdbc) Access databases through SQL and JDBC. Category: database,sql Since: 1.2 Maven coordinates: org.apache.camel:camel-jdbc Syntax: jdbc:dataSourceName Path parameter: dataSourceName (required) Name of DataSource to lookup in the Registry. If the name is dataSource or default, then Camel will attempt to lookup a default DataSource from the registry, meaning if there is a only one instance of DataSource found, then this DataSource will be used.
        Parameters:
        path - dataSourceName
        Returns:
        the dsl builder
      • jdbc

        default JdbcEndpointBuilderFactory.JdbcEndpointBuilder jdbc​(String componentName,
                                                                    String path)
        JDBC (camel-jdbc) Access databases through SQL and JDBC. Category: database,sql Since: 1.2 Maven coordinates: org.apache.camel:camel-jdbc Syntax: jdbc:dataSourceName Path parameter: dataSourceName (required) Name of DataSource to lookup in the Registry. If the name is dataSource or default, then Camel will attempt to lookup a default DataSource from the registry, meaning if there is a only one instance of DataSource found, then this DataSource will be used.
        Parameters:
        componentName - to use a custom component name for the endpoint instead of the default name
        path - dataSourceName
        Returns:
        the dsl builder