Archive for the 'Java' category

Connect to database

Sep 16 2009 Published by under Java

try {
  String url = "jdbc:mysql://localhost:3306/mydb";
  Class.forName ("com.mysql.jdbc.Driver").newInstance ();
  Connection conn = DriverManager.getConnection (url, user, pwd);
} catch (Exception e){
  System.out.println("Unable to establish connection " + e.getMessage());
}

Continue Reading »

No responses yet

« Newer posts