Uses of Class
org.apache.camel.component.sql.SqlEndpoint

Packages that use SqlEndpoint
org.apache.camel.component.sql Defines an SQL component that can bind to JDBC datasources and execute SQL queries that are exposed as endpoints. 
 

Uses of SqlEndpoint in org.apache.camel.component.sql
 

Methods in org.apache.camel.component.sql that return SqlEndpoint
 SqlEndpoint SqlConsumer.getEndpoint()
           
 SqlEndpoint SqlProducer.getEndpoint()
           
 

Methods in org.apache.camel.component.sql with parameters of type SqlEndpoint
 int SqlProcessingStrategy.commit(SqlEndpoint endpoint, org.apache.camel.Exchange exchange, Object data, org.springframework.jdbc.core.JdbcTemplate jdbcTemplate, String query)
          Commit callback if there are a query to be run after processing.
 int DefaultSqlProcessingStrategy.commit(SqlEndpoint endpoint, org.apache.camel.Exchange exchange, Object data, org.springframework.jdbc.core.JdbcTemplate jdbcTemplate, String query)
           
 int SqlProcessingStrategy.commitBatchComplete(SqlEndpoint endpoint, org.springframework.jdbc.core.JdbcTemplate jdbcTemplate, String query)
          Commit callback when the batch is complete.
 int DefaultSqlProcessingStrategy.commitBatchComplete(SqlEndpoint endpoint, org.springframework.jdbc.core.JdbcTemplate jdbcTemplate, String query)
           
 

Constructors in org.apache.camel.component.sql with parameters of type SqlEndpoint
SqlConsumer(SqlEndpoint endpoint, org.apache.camel.Processor processor, org.springframework.jdbc.core.JdbcTemplate jdbcTemplate, String query, SqlPrepareStatementStrategy sqlPrepareStatementStrategy, SqlProcessingStrategy sqlProcessingStrategy)
           
SqlProducer(SqlEndpoint endpoint, String query, org.springframework.jdbc.core.JdbcTemplate jdbcTemplate, SqlPrepareStatementStrategy sqlPrepareStatementStrategy, boolean batch, boolean alwaysPopulateStatement)
           
 



Apache Camel