Advertisement
Guest User

Untitled

a guest
May 13th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.96 KB | None | 0 0
  1. This is the root.properties:
  2.  
  3. # The class name for the JDBC Driver
  4. db.driver=com.mysql.jdbc.Driver
  5. #db.driver=oracle.jdbc.driver.OracleDriver
  6. #db.driver=org.postgresql.Driver
  7. #db.driver=org.apache.derby.jdbc.EmbeddedDriver
  8. #db.driver=org.hsqldb.jdbcDriver
  9. #db.driver=net.sourceforge.jtds.jdbc.Driver
  10. #db.driver=com.ibm.db2.jcc.DB2Driver
  11.  
  12. # The JDBC URL used to connect to the database
  13. db.url=jdbc:mysql://localhost/symmetricds
  14. #db.url=jdbc:oracle:thin:@127.0.0.1:1521:sampleroot
  15. #db.url=jdbc:postgresql://localhost/sampleroot
  16. #db.url=jdbc:derby:sampleroot;create=true
  17. #db.url=jdbc:hsqldb:file:sampleroot;shutdown=true
  18. #db.url=jdbc:h2:file:sampleroot
  19. #db.url=jdbc:jtds:sqlserver://localhost:2299/sampleroot
  20. #db.url=jdbc:db2://localhost/samproot
  21.  
  22. # The user to login as who can create and update tables
  23. db.user=root
  24.  
  25. # The password for the user to login as
  26. db.password=PASSWORD.HERE
  27.  
  28. # Do not change these for running the demo
  29. group.id=corp
  30. external.id=00000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement