Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public Connection getConnection()
  2. {
  3. Connection conn;
  4. try
  5. {
  6. conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/pitha", "root","");
  7. return conn;
  8. }catch(Exception e)
  9. {
  10. e.printStackTrace();
  11. return null;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement