Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <xa-datasource jndi-name="java:/MysqlDS" pool-name="mysql" enabled="true" use-java-context="true">
  2. <xa-datasource-property name="URL">
  3. jdbc:mysql://localhost:3306/ispstool
  4. </xa-datasource-property>
  5. <driver>mysql</driver>
  6. <transaction-isolation>TRANSACTION_READ_COMMITTED</transaction-isolation>
  7. <security>
  8. <user-name>ispstool</user-name>
  9. <password>ispstool</password>
  10. </security>
  11. </xa-datasource>
  12. <drivers>
  13. <driver name="mysql" module="com.mysql">
  14. <driver-class>com.mysql.jdbc.Driver</driver-class>
  15. <xa-datasource-class>com.mysql.jdbc.jdbc2.optional.MysqlXADataSource</xa-datasource-class>
  16. </driver>
  17. <driver name="oracle" module="com.oracle">
  18. <xa-datasource-class>oracle.jdbc.xa.client.OracleXADataSource</xa-datasource-class>
  19. </driver>
  20. <driver name="h2xa" module="com.h2database.h2">
  21. <xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
  22. </driver>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement