import java.sql.*; /** A Java program which will someday access Mr. Frumble's data table on IISQLSRV, using JDBC. @author Michael Ratanapintha */ class JdbcSection4 { public static void main (String argv[]) throws Exception { System.out.println("Connecting to IISQLSRV..."); // Our code goes here System.out.println("... connected"); System.out.println(); //runStaticQuery(conn); //runUpdate(conn); //runParameterizedQuery(conn); } // List all the sales in February static void runStaticQuery (Connection conn) throws SQLException { System.out.println("Mr. Frumble made the following sales in February:"); // Our code goes here System.out.println(); } // Change product "gizmo3"'s name to "jane's super gizmo" static void runUpdate (Connection conn) throws SQLException { // Our code goes here } // List all the sales in April, May, and June // (separately for each month) static void runParameterizedQuery (Connection conn) throws SQLException { // Our code goes here } }