Uses of Interface
org.apache.camel.builder.endpoint.dsl.SqlEndpointBuilderFactory.SqlEndpointProducerBuilder
Packages that use SqlEndpointBuilderFactory.SqlEndpointProducerBuilder
-
Uses of SqlEndpointBuilderFactory.SqlEndpointProducerBuilder in org.apache.camel.builder.endpoint.dsl
Subinterfaces of SqlEndpointBuilderFactory.SqlEndpointProducerBuilder in org.apache.camel.builder.endpoint.dslModifier and TypeInterfaceDescriptionstatic interfaceBuilder for endpoint for the SQL component.Methods in org.apache.camel.builder.endpoint.dsl that return SqlEndpointBuilderFactory.SqlEndpointProducerBuilderModifier and TypeMethodDescriptionSqlEndpointBuilderFactory.SqlEndpointProducerBuilder.allowNamedParameters(boolean allowNamedParameters) Whether to allow using named parameters in the queries.SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.allowNamedParameters(String allowNamedParameters) Whether to allow using named parameters in the queries.SqlEndpointBuilderFactory.AdvancedSqlEndpointProducerBuilder.basic()SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.batch(boolean batch) Enables or disables batch mode.Enables or disables batch mode.SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.dataSource(String dataSource) Sets the DataSource to use to communicate with the database at endpoint level.SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.dataSource(DataSource dataSource) Sets the DataSource to use to communicate with the database at endpoint level.SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.noop(boolean noop) If set, will ignore the results of the SQL query and use the existing IN message as the OUT message for the continuation of processing.If set, will ignore the results of the SQL query and use the existing IN message as the OUT message for the continuation of processing.SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.outputClass(String outputClass) Specify the full package and class name to use as conversion when outputType=SelectOne.SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.outputHeader(String outputHeader) Store the query result in a header instead of the message body.SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.outputType(String outputType) Make the output of consumer or producer to SelectList as List of Map, or SelectOne as single Java object in the following way: a) If the query has only single column, then that JDBC Column object is returned.SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.outputType(org.apache.camel.component.sql.SqlOutputType outputType) Make the output of consumer or producer to SelectList as List of Map, or SelectOne as single Java object in the following way: a) If the query has only single column, then that JDBC Column object is returned.SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.separator(char separator) The separator to use when parameter values is taken from message body (if the body is a String type), to be inserted at # placeholders.The separator to use when parameter values is taken from message body (if the body is a String type), to be inserted at # placeholders.SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.useMessageBodyForSql(boolean useMessageBodyForSql) Whether to use the message body as the SQL and then headers for parameters.SqlEndpointBuilderFactory.SqlEndpointProducerBuilder.useMessageBodyForSql(String useMessageBodyForSql) Whether to use the message body as the SQL and then headers for parameters.