View Single Post
  #2 (permalink)  
Old 04-02-2007, 12:40 PM
goldhouse goldhouse is offline
Senior Member
 
Join Date: Mar 2007
Posts: 136
goldhouse is on a distinguished road
ferosh please paste code inside '[ code ] [ /code ]' block

Code:
public Connection getDb() throws ClassNotFoundException, SQLException { Connection con=null; try { Class.forName("com.mysql.jdbc.Driver").newInstance (); con = DriverManager.getConnection("jdbc:mysql://localhost/mytest?user=root&password=lroot"); // System.out.println("Connection is established"); } catch(Exception e) { System.out.println("Exception in Connection "+ e); } return con; }
Reply With Quote