Guest User

Untitled

a guest
Dec 5th, 2018
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public class ConnectionDb {
  2.  
  3. Connection connect = null;
  4.  
  5. public Connection getSqlConnection() throws ClassNotFoundException, SQLException {
  6.  
  7. Class.forName("com.mysql.jdbc.Driver");
  8. connect = (Connection) DriverManager.getConnection("jdbc:mysql://172.20.201.251:3306/jbdc", "root", "tcs#1234");
  9. return connect;
  10. }
  11. }
Add Comment
Please, Sign In to add comment