|
Page Edited :
CAMEL :
SQL Component
SQL Component has been edited by Claus Ibsen (Nov 12, 2008). Change summary: CAMEL-656 and CAMEL-1063 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?[options]
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() Header valuesWhen doing update operations the SQL Component stores the update count in the body header
Configuration in Camel 1.5.0 or lowerSQL component has to be configured before it can be used. In Spring it can be done this way: <bean id="sql" class="org.apache.camel.component.sql.SqlComponent"> <property name="dataSource" ref="myDS"/> </bean> <bean id="myDS" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <property name="driverClassName" value="com.mysql.jdbc.Driver" /> <property name="url" value="jdbc:mysql://localhost:3306/ds" /> <property name="username" value="username" /> <property name="password" value="password" /> </bean> Configuration in Camel 1.5.1 or higherYou can now set a reference to a dataSoruce in the URI directly sql:select * from table where id=# order by name?dataSourceRef=myDS SampleIn the sample below we execute a query and retrieve the result as a List of rows where each rows is a Map<String, Object where the key is the column name. First we setup a table to use for our sample. As this is based on an unit test we do it java code: // this is the database we create with some initial data for our unit test jdbcTemplate.execute("create table projects (id integer primary key," + "project varchar(10), license varchar(5))"); jdbcTemplate.execute("insert into projects values (1, 'Camel', 'ASF')"); jdbcTemplate.execute("insert into projects values (2, 'AMQ', 'ASF')"); jdbcTemplate.execute("insert into projects values (3, 'Linux', 'GPL')"); Then we configure our route and our sql component. Notice that we use a direct endpoint in front of the sql. This allows us to send an exchange to the direct endpoint with the uri direct:simple that is much easier for client to use than the long URI that the sql component uses. Notice that the dataSource is lookup up in the registry. So we can use standard Spring XML to configure our DataSource. from("direct:simple") .to("sql:select * from projects where license = # order by id?dataSourceRef=jdbc/myDataSource") .to("mock:result"); And then we fire the message into the direct endpoint that will route it to our sql component that queries the database. And we could configure the dataSource in Spring XML such as: <jee:jndi-lookup id="myDS" jndi-name="jdbc/myDataSource"/>
See Also |
Unsubscribe or edit your notifications preferences
