//****************************************************************************** // // Program: Cs462 Individual Project -- JDBC program to access Hockey DB // // Author: Travis Dillon // Email: tdillon@ace.cs.ohiou.edu // // Description: Access a single table in the DB. Can add, delete, and modify // that table. View that entire table. Also view reports on // other tables. // // Date: May 25, 2004 // //****************************************************************************** import java.sql.*; import java.io.*; class simple { public static void main(String args []) throws SQLException, IOException { try { Class.forName ("oracle.jdbc.driver.OracleDriver"); } catch (ClassNotFoundException e) { System.out.println ("Could not load the driver"); } Connection conn = DriverManager.getConnection ("jdbc:oracle:oci:@","my_username","my_pw"); char ans, junk; do { menu(); System.out.print("choice : "); System.out.flush(); ans = (char) System.in.read(); junk = (char) System.in.read(); while(junk != '\n') { junk = (char) System.in.read(); } switch(ans) { case '1': enter(conn); break; case '2': delete(conn); break; case '3': change(conn); break; case '4': view(conn); break; case '5': reports(conn); break; case '6': System.out.println("\nbye\n"); break; default : System.out.println("\nInvalid Input\n"); } }while(ans != '6'); conn.close(); } //END MAIN //*************************************************************************** // // Function: menu // Purpose: Outputs the user menu // Parameters: none // Calls: none // //*************************************************************************** static void menu() { System.out.println("\n1. Enter a goalie and year for stats to be kept"); System.out.println("2. Delete a goalies stats for a given year"); System.out.println("3. Update a goalies stats"); System.out.println("4. View all of the goalies stats for all years"); System.out.println("5. Display leader boards"); System.out.println("6. Quit"); } //*************************************************************************** // // Function: enter // Purpose: Enter a goalie and year for stats to be kept // Parameters: conn - connection to oracle database // Calls: createStatement, executeUpdate, getMessage, getNExtException // //*************************************************************************** static void enter(Connection conn) throws SQLException, IOException { String player_name; int year; player_name = readEntry("What player : "); year = readNumber("What year : "); Statement stmt = conn.createStatement(); String inserter = "insert into GSTATS values " + "('" + year + "','" + player_name + "','0','0','0','0')"; try { int n = stmt.executeUpdate(inserter); } catch(SQLException e) { System.out.println("\nCould not insert into database, sorry.\n"); while(e != null) { System.out.println("Message:"+e.getMessage()); e = e.getNextException(); } return; } stmt.close(); } //*************************************************************************** // // Function: delete // Purpose: Delete a goalies stats for a given year // Parameters: conn - connection to oracle database // Calls: readEntry, createStatement, executeUpdate, getNextException // //*************************************************************************** static void delete(Connection conn) throws SQLException, IOException { String player_name, year; player_name = readEntry("What player : "); year = readEntry("What year : "); Statement stmt = conn.createStatement(); String deleter = "delete GSTATS where p_name = '" + player_name + "' and " + "year = '" + year + "'"; try { int n = stmt.executeUpdate(deleter); } catch(SQLException e) { System.out.println("\nCould not delete from database, sorry.\n"); while(e != null) { System.out.println("Message:"+e.getMessage()); e = e.getNextException(); } return; } stmt.close(); } //*************************************************************************** // // Function: change // Purpose: Update a goalies stats // Parameters: conn - connection to oracle database // Calls: createStatement, readEntry, executeQuery, readNumber // //*************************************************************************** static void change(Connection conn) throws SQLException, IOException { Statement stmt = conn.createStatement(); char ans, junk; int g_played = 0, minutes = 0, g_against = 0, shutouts = 0, new_stat = 0; Integer new_stat_int = new Integer(new_stat); String player_name, year, updater; player_name = readEntry("What player : "); year = readEntry("What year : "); ResultSet rset = stmt.executeQuery("select * from GSTATS where " + "p_name = '" + player_name + "' and year = '" + year + "'"); while(rset.next()) { g_played = Integer.parseInt(rset.getString(3)); minutes = Integer.parseInt(rset.getString(4)); g_against = Integer.parseInt(rset.getString(5)); shutouts = Integer.parseInt(rset.getString(6)); } do { System.out.print("\n1. Update the number of games played"); System.out.print("\n2. Update the number of minutes played"); System.out.print("\n3. Update the number of goals against"); System.out.print("\n4. Update the number of shutouts"); System.out.print("\n5. Done\n"); System.out.print("choice : "); System.out.flush(); ans = (char) System.in.read(); junk = (char) System.in.read(); while(junk != '\n') { junk = (char) System.in.read(); } switch(ans) { case '1': { new_stat = g_played + readNumber("How many games played : "); updater = "update GSTATS set g_played = " + new_stat_int.toString(new_stat) + " where p_name = '" + player_name + "' and year = '" + year + "'"; break; } case '2': { new_stat = minutes + readNumber("How many minutes played : "); updater = "update GSTATS set minutes = " + new_stat_int.toString(new_stat) + " where p_name = '" + player_name + "' and year = '" + year + "'"; break; } case '3': { new_stat = g_against + readNumber("How goals against : "); updater = "update GSTATS set g_against = " + new_stat_int.toString(new_stat) + " where p_name = '" + player_name + "' and year = '" + year + "'"; break; } case '4': { new_stat = shutouts + readNumber("How many shutouts : "); updater = "update GSTATS set shutouts = " + new_stat_int.toString(new_stat) + " where p_name = '" + player_name + "' and year = '" + year + "'"; break; } case '5': updater = (""); break; default : System.out.println("\nInvalid Input\n"); updater = (""); } if(ans == '1' || ans == '2' || ans == '3' || ans == '4') { try { int n = stmt.executeUpdate(updater); } catch(SQLException e) { System.out.println("\nCould not update database, sorry.\n"); while(e != null) { System.out.println("Message:"+e.getMessage()); e = e.getNextException(); } return; } } }while(ans != '5'); stmt.close(); } //*************************************************************************** // // Function: view // Purpose: Shows all entries in the GSTATS table // Parameters: conn - connection to oracle database // Calls: createStatement, executeQuery, space, getString // //*************************************************************************** static void view(Connection conn) throws SQLException, IOException { Statement stmt = conn.createStatement(); ResultSet rset = stmt.executeQuery("select * from GSTATS"); System.out.println("\n YEAR P_NAME G_PLAYED" + " MINUTES G_AGAINST SHUTOUTS"); System.out.println("---------- -------------------- ----------" + " ---------- ---------- ----------"); while(rset.next()) { space(6); System.out.print(rset.getString(1)); space(1); System.out.print(rset.getString(2)); space(31 - rset.getString(2).length() - rset.getString(3).length()); System.out.print(rset.getString(3)); space(11 - rset.getString(4).length()); System.out.print(rset.getString(4)); space(11 - rset.getString(5).length()); System.out.print(rset.getString(5)); space(11 - rset.getString(6).length()); System.out.println(rset.getString(6)); } System.out.println("---------- -------------------- ----------" + " ---------- ---------- ----------\n"); stmt.close(); } //*************************************************************************** // // Function: reports // Purpose: displays the leader boards for goals, assists, & points // Parameters: conn - connection to oracle database // Calls: executeQuery, getNextException, flush, getString // //*************************************************************************** static void reports(Connection conn) throws SQLException, IOException { char ans, junk; System.out.print("\n1. Goals leader board"); System.out.print("\n2. Assists leader board"); System.out.print("\n3. Points leader board"); System.out.print("\nchoice : "); System.out.flush(); ans = (char) System.in.read(); junk = (char) System.in.read(); while(junk != '\n') { junk = (char) System.in.read(); } Statement stmt = conn.createStatement(); String query1 = "select PSTATS.p_name, PLAYERS.t_name, PSTATS.goals " + "from PSTATS, PLAYERS where year = '2004' AND " + "PSTATS.p_name = PLAYERS.p_name order by goals DESC"; String query2 = "select PSTATS.p_name, PLAYERS.t_name, PSTATS.assists " + "from PSTATS, PLAYERS where year = '2004' AND " + "PSTATS.p_name = PLAYERS.p_name order by assists DESC"; String query3 = "select PSTATS.p_name, PLAYERS.t_name, PSTATS.goals + " + "PSTATS.assists from PSTATS, PLAYERS where year = " + "'2004' AND PSTATS.p_name = PLAYERS.p_name order by " + "goals + assists DESC"; String stat_type = ""; ResultSet rset = stmt.executeQuery(query1); switch(ans) { case '1': { try { rset = stmt.executeQuery(query1); } catch(SQLException e) { System.out.println("\nCould not execute query, sorry.\n"); while(e != null) { System.out.println("Message:"+e.getMessage()); e = e.getNextException(); } return; } stat_type = "GOALS"; break; } case '2': { try { rset = stmt.executeQuery(query2); } catch(SQLException e) { System.out.println("\nCould not execute query, sorry.\n"); while(e != null) { System.out.println("Message:"+e.getMessage()); e = e.getNextException(); } return; } stat_type = "ASSISTS"; break; } case '3': { try { rset = stmt.executeQuery(query3); } catch(SQLException e) { System.out.println("\nCould not execute query, sorry.\n"); while(e != null) { System.out.println("Message:"+e.getMessage()); e = e.getNextException(); } return; } stat_type = "POINTS"; break; } default : } if(ans == '1' || ans == '2' || ans == '3') { System.out.println("\n" + stat_type + " LEADER BOARD"); System.out.print("PLAYER"); space(15); System.out.print("TEAM"); switch(ans) { case '1': { space(17); System.out.println("GOALS"); break; } case '2': { space(15); System.out.println("ASSISTS"); break; } case '3': { space(16); System.out.println("POINTS"); break; } } System.out.println("-------------------- " + "--------------- ----------"); while(rset.next()) { System.out.print(rset.getString(1)); space(21 - rset.getString(1).length()); System.out.print(rset.getString(2)); space(26 - rset.getString(2).length() - rset.getString(3).length()); System.out.println(rset.getString(3)); } System.out.println("-------------------- " + "--------------- ----------"); } } //*************************************************************************** // // Function: space // Purpose: Print out spaces on the page // Parameters: num_spaces - how many spaces do you want? // Calls: none // //*************************************************************************** static void space(int num_spaces) { for(int i = 0; i < num_spaces; ++i) { System.out.print(" "); } } //*************************************************************************** // // Function: readEntry // Purpose: read stuff from keyboard, java is horrible, i love c++ // Parameters: prompt - output // Calls: print, flush, read, toString, trim // //*************************************************************************** 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 ""; } } //*************************************************************************** // // Function: readNumber // Purpose: how do you get input from the keyboard in java? // Parameters: prompt - output to screen // Calls: readEntry, parseInt // //*************************************************************************** static int readNumber(String prompt) throws IOException { String snum; int num = 0; boolean numok; do { snum = readEntry(prompt); try { num = Integer.parseInt(snum); numok = true; } catch (NumberFormatException e) { numok = false; System.out.println("Invalid number; enter again"); } }while(!numok); return num; } }