Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. Connection conn=null;
  2. Statement st=null;
  3. public Connection Database() throws InstantiationException, IllegalAccessException, ClassNotFoundException, SQLException {
  4. Class.forName("com.mysql.jdbc.Driver").newInstance();
  5. conn=DriverManager.getConnection("jdbc:mysql://localhost/library?" +
  6. "user=root&password=");
  7. st=conn.createStatement();
  8. return conn;
  9. }
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement