Uses of Interface
org.apache.camel.component.sql.SqlProcessingStrategy
-
Packages that use SqlProcessingStrategy Package Description 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 SqlProcessingStrategy in org.apache.camel.component.sql
Subinterfaces of SqlProcessingStrategy in org.apache.camel.component.sql Modifier and Type Interface Description interfaceSqlNamedProcessingStrategyExtended processing strategy for dealing with SQL when consuming, which uses aNamedParameterJdbcTemplateinstead of plainJdbcTemplate.Classes in org.apache.camel.component.sql that implement SqlProcessingStrategy Modifier and Type Class Description classDefaultSqlProcessingStrategyMethods in org.apache.camel.component.sql that return SqlProcessingStrategy Modifier and Type Method Description SqlProcessingStrategyDefaultSqlEndpoint. getProcessingStrategy()Methods in org.apache.camel.component.sql with parameters of type SqlProcessingStrategy Modifier and Type Method Description voidDefaultSqlEndpoint. setProcessingStrategy(SqlProcessingStrategy processingStrategy)Allows to plugin to use a custom org.apache.camel.component.sql.SqlProcessingStrategy to execute queries when the consumer has processed the rows/batch.Constructors in org.apache.camel.component.sql with parameters of type SqlProcessingStrategy Constructor Description SqlConsumer(DefaultSqlEndpoint endpoint, org.apache.camel.Processor processor, org.springframework.jdbc.core.JdbcTemplate jdbcTemplate, String query, SqlPrepareStatementStrategy sqlPrepareStatementStrategy, SqlProcessingStrategy sqlProcessingStrategy)SqlConsumer(DefaultSqlEndpoint endpoint, org.apache.camel.Processor processor, org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate namedJdbcTemplate, String query, org.springframework.jdbc.core.namedparam.SqlParameterSource parameterSource, SqlPrepareStatementStrategy sqlPrepareStatementStrategy, SqlProcessingStrategy sqlProcessingStrategy)
-