try{
Class.forName(driver);
conn = DriverManager.getConnection(url,uid,pass);
stmt = conn.createStatement();
}
catch(ClassNotFoundException ce)
{
System.out.println("ERROR:"+ce.getMessage());
}
catch(SQLException se)
{
System.out.println("ERROR:"+se.getMessage());
}
}