Skip to content

Instantly share code, notes, and snippets.

@riferrei
Created April 25, 2010 21:04
Show Gist options
  • Save riferrei/378728 to your computer and use it in GitHub Desktop.
Save riferrei/378728 to your computer and use it in GitHub Desktop.
<action name="sqlRouter" class="org.jboss.soa.esb.actions.routing.sql.SQLRouter">
<property name="driver-class" value="com.mysql.jdbc.Driver" />
<property name="connection-url" value="jdbc:mysql://localhost/sqlRouterDemo" />
<property name="user-name" value="root" />
<property name="password" value="root" />
<property name="table-name" value="TAB_CLIENTE" />
<property name="operation-type" value="UPDATE" />
<property name="show-sql" value="true" />
<property name="columns">
<column name="ATIVO" value="true" update="true" />
<column name="PRIMEIRO_NOME" operator="LIKE" value="'Ricardo%'" />
<column name="CPF" operator=">" value="0" />
</property>
</action>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment