Guest User

Untitled

a guest
Jul 18th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. # ----------- accessing remote SQL Server database
  2.  
  3. # ----------- using JDBC driver from Microsoft
  4.  
  5. Driver=com.microsoft.jdbc.sqlserver.SQLServerDriver
  6.  
  7. URL=jdbc:microsoft:sqlserver://j2ee.ca
  8.  
  9. User=jspweb
  10.  
  11. Password=jspweb
  12.  
  13. DatabaseName=jspweb
  14.  
  15. # ---------- accessing a local MySql database
  16.  
  17. #Driver=com.mysql.jdbc.Driver
  18.  
  19. #URL=jdbc:mysql://localhost:3306/jspweb
  20.  
  21. #User=jspweb
  22.  
  23. #Password=jspweb
  24.  
  25. #DatabaseName=jspweb
  26.  
  27. # ---------- accessing a local MSAccess database
  28.  
  29. #Driver=sun.jdbc.odbc.JdbcOdbcDriver
  30.  
  31. #URL=jdbc:odbc:jspweb
  32.  
  33. #User=jspweb
  34.  
  35. #Password=jspweb
  36.  
  37. #DatabaseName=jspweb
Add Comment
Please, Sign In to add comment