Skip to content

Instantly share code, notes, and snippets.

@riferrei
Created April 25, 2010 20:20
Show Gist options
  • Save riferrei/378688 to your computer and use it in GitHub Desktop.
Save riferrei/378688 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/db_sqlRouterDemo" />
<property name="user-name" value="root" />
<property name="password" value="root" />
<property name="table-name" value="TAB_CLIENTE" />
<property name="operation-type" value="INSERT" />
<property name="columns">
<column name="PRIMEIRO_NOME" value="'Ricardo'" />
<column name="ULTIMO_NOME" value="'Ferreira'" />
<column name="ATIVO" value="true" />
</property>
</action>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment