Advertisement
Guest User

Untitled

a guest
Sep 17th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public Connection getConnection() throws SQLException, ClassNotFoundException {
  2. Class.forName("com.mysql.jdbc.Driver");
  3. con=DriverManager.getConnection("jdbc:mysql://182.31.456.32:3306/"+database+"",""+username+"",""+password+"");
  4. // stm=con.createStatement();
  5. return con;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement