Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. # --- Oracle DB ---
  2. # URL - Old syntax
  3. jdbc:oracle:thin:@[HOST][:PORT]:SID
  4. # URL - New syntax
  5. jdbc:oracle:thin:@//[HOST][:PORT]/SERVICE
  6. # driver-class-name
  7. oracle.jdbc.driver.OracleDriver
  8.  
  9. # --- PostgreSQL ---
  10. # URL
  11. jdbc:postgresql:database
  12. jdbc:postgresql://host/database
  13. jdbc:postgresql://host:port/database
  14. # driver-class-name
  15. org.postgresql.Driver
  16.  
  17. # --- AS400/DB2 ---
  18. # URL
  19. jdbc:as400://systemName/defaultSchema;listOfProperties
  20. jdbc:as400://systemName;listOfProperties
  21. # Example URL
  22. jdbc:as400://MYSYSTEM;database name=MYDATABASE;date format=iso
  23. # driver-class-name
  24. com.ibm.as400.access.AS400JDBCDriver
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement