Guest User

Untitled

a guest
Aug 26th, 2018
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. public class DatebaseHandler {
  2. Connection dbConnectoin;
  3. public Connection getDbConnectoin()
  4. throws ClassNotFoundException, SQLException{
  5.  
  6. String connectionString = "jdbc:mysql://localhost:3306/programma?autoReconnect=true&useSSL=false";
  7. Class.forName("com.mysql.cj.jdbc.Driver");
  8. dbConnectoin = DriverManager.getConnection(connectionString, "root","password");
  9.  
  10. return dbConnectoin;
  11.  
  12. }
Add Comment
Please, Sign In to add comment