Guest User

Untitled

a guest
Sep 9th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. Problem with Tomcat5.5, MySQL connection
  2. public static Connection openConnection(String database) throws Exception
  3. {
  4. Class.forName("com.mysql.jdbc.Driver").newInstance();
  5.  
  6. Connection db = DriverManager.getConnection("jdbc:mysql://localhost:3306/" + database, "username", "password");
  7. db.setAutoCommit(false);
  8.  
  9. return db;
  10. }
Add Comment
Please, Sign In to add comment