Guest User

Untitled

a guest
Oct 21st, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. import java.sql.Connection;
  2. import java.sql.DriverManager;
  3.  
  4. public class ConProvider {
  5. static Connection getConnection() {
  6. Connection con=null;
  7. try {
  8. Class.forName("com.mysql.jdbc.Driver");
  9. con=DriverManager.getConnection("jdbc:mysql://localhost:3306/nasa","root","");
  10. }catch(Exception e) {}
  11. return con;
  12. }
  13.  
  14. }
Add Comment
Please, Sign In to add comment