try {
Class.forName("oracle.jdbc.driver.OracleDriver");
conn = DriverManager.getConnection(
"jdbc:oracle:thin:@devdb02:1521:ohsdb", "oehr", "rheo" );
}
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);
}