Guest User

Untitled

a guest
Apr 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. package db;
  2.  
  3. public class DB {
  4. public static String user="root";
  5. public static String password="";
  6. public static String protocol="JDBC:mysql:";
  7. public static String ip="localhost";
  8. public static String port="3306";
  9. public static String dbName="videoklub";
  10. public static String dbDriver="com.mysql.jdbc.Driver";
  11. public static String connectionString = protocol + "//" + ip + ":" + port + "/" + dbName;
  12.  
  13. static {
  14. try {
  15. Class.forName(dbDriver);
  16. } catch (ClassNotFoundException ex) {
  17. System.err.println(ex);
  18. }
  19. }
  20. }
Add Comment
Please, Sign In to add comment