SQL ComponentThe sql: component allows you to work with databases using JDBC queries. The difference between this component and JDBC component is that in case of SQL the query is a property of the endpoint and it uses message payload as parameters passed to the query. URI format
SQL component uses following endpoint URI notation sql:select * from table where id=# order by name?template.maxRows=10 Notice that standard ? symbol that denotes parameters to SQL query is substituted with # symbol as ? symbol is used to specify options for the endpoint. Rules of treating message bodyThis component tries to convert the message body to Iterator and then, using this iterator it fills parameters of query. It means that if the body is not an array, collection of iterator, then this conversion will result in iterator that iterates over only one object that is the body itself. Results of invocationResult of the invocation is effectively List<Map<String, Object>> as returned from JdbcTemplate.queryForList() OptionsAll options that are available are prefixed by template. and are properties of JdbcTemplate class. For detailed documentation see JdbcTemplate javadoc Header valuesWhen doing update operations the SQL Component stores the update count in the body header
See Also |