/****************************************************************/ /* GradeBook Application Main class (Section 5.6) */ /* Needs grade1.java and grade2.java to be compiled */ /* Chapter 5; Oracle Programming -- A Primer */ /* by R. Sunderraman */ /****************************************************************/ import java.io.*; import java.sql.*; class gradebook { public static void main (String args []) throws SQLException, IOException { grade1 g1 = new grade1(); boolean done; char ch,ch1; byte num = 0; try { Class.forName ("oracle.jdbc.driver.OracleDriver"); } catch (ClassNotFoundException e) { System.out.println ("Could not load the driver"); return; } String user, pass; user = readEntry("userid : "); pass = readEntry("password: "); Connection conn = DriverManager.getConnection ("jdbc:oracle:oci7:"+user+"/"+pass); done = false; do { g1.print_menu(); System.out.print("Type in your option:"); System.out.flush(); ch = (char) System.in.read(); ch1 = (char) System.in.read(); switch (ch) { case '1' : g1.add_catalog(conn); break; case '2' : g1.add_course(conn); break; case '3' : g1.add_students(conn); break; case '4' : g1.select_course(conn); break; case 'q' : done = true; break; default : System.out.println("Type in option again"); } } while (!done); conn.close(); } //readEntry function -- to read input string static String readEntry(String prompt) { try { StringBuffer buffer = new StringBuffer(); System.out.print(prompt); System.out.flush(); int c = System.in.read(); while(c != '\n' && c != -1) { buffer.append((char)c); c = System.in.read(); } return buffer.toString().trim(); } catch (IOException e) { return ""; } } }