try {
Class.forName("oracle.jdbc.driver.OracleDriver");
conn = DriverManager.getConnection(
"jdbc:oracle:thin:@dssw2k01:1521:orcl", "scott", "tiger" );
}
catch (ClassNotFoundException e) {
System.err.println("Class Not Found Error: " + e.getMessage());
System.exit(1);
}
catch (SQLException e) {
System.err.println("SQL Error: " + e.getMessage());
System.exit(1);
}