Skip to content

Instantly share code, notes, and snippets.

@germanrsolis
Created October 21, 2011 00:17
Show Gist options
  • Save germanrsolis/1302776 to your computer and use it in GitHub Desktop.
Save germanrsolis/1302776 to your computer and use it in GitHub Desktop.
JDBC - External Queries - 2
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns="http://www.mulesoft.org/schema/mule/core"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:spring-security="http://www.mulesoft.org/schema/mule/spring-security"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/3.1/mule.xsd
http://www.mulesoft.org/schema/mule/spring-security http://www.mulesoft.org/schema/mule/spring-security/3.1/mule-spring-security.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<beans:bean class="java.lang.String" name="formatedQuery" >
<beans:constructor-arg value="
SELECT *
FROM TEST_JDBC
WHERE FIELD1 > 10" />
</beans:bean>
</mule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment