Don't care what Troy and Dogboy say, still rather see him throw than run.
Announcement
Collapse
No announcement yet.
OFFICIAL Gameday Packers beat SF 49ers thread
Collapse
X
-
OK Mike, no more two runs in a row or the board gets it:
Code:/** * This class creates a data base connection using JDBC driver. * The created connection will be used and re-used subsequently * in different classes of the MRR application. * * The "Singleton pattern" is used to create a static object * and return a reference upon request * * Creation date: (2/22/2001 10:15:04 AM) * @author: XXXX XXXX */ import java.sql.*; import java.util.*; public class DBConnection { private static DBConnection dbCon = new DBConnection(); private static String errCode="0000"; private Connection connection; private DBConnection() { /**This is the constructor of class of DBConnection. *The function is to make a database connection. * *Define local variables */ String sDriver, sPassword, sUserID, sURL; //Specify Driver name, user ID and password String driver = "COM.ibm.db2.jdbc.app.DB2Driver"; String userid = "mrpd1"; String password = "XXXXXXX"; //specify database URL String url=null; url = "jdbc:db2:mrpddb"; //MRPDDB on production // url = "jdbc:db2:DEV"; // local development instance // url = "jdbc:db2:dhoneds"; //XXXX's local alias to MRPDDB on dhoneds System.out.println("Using database: " + url); //Attempt to load the JDBC driver with newInstance try { Class.forName(driver).newInstance(); } catch (Exception e) { System.err.println("Failed to load current driver."); errCode = "8301"; return; } //Attempt to connect to the database try { connection = DriverManager?.getConnection(url, userid, password); System.out.println("\n\tConnection to "+url+" successful\n"); } catch (SQLException SQLe) { System.err.println("problems connecting to " + url + ":"); System.err.println(SQLe.getMessage()); System.err.println("SQL State: " + SQLe.getSQLState()); if (connection != null) { try { connection.close(); } catch (Exception e) { } } errCode = "8302"; return; } } public static Connection getConnection() { return dbCon.connection; } public static String getErrorCode() { return errCode; } }Bud Adams told me the franchise he admired the most was the Kansas City Chiefs. Then he asked for more hookers and blow.
Comment
-
Ross has not covered himself in glory, esp. on kickoffs.Originally posted by gbgary View Postnow we need a nice long drive for a td.
AND NO COBB ON RETURNS! IS MM CRAZY?Bud Adams told me the franchise he admired the most was the Kansas City Chiefs. Then he asked for more hookers and blow.
Comment
-
Very suprised we forced a punt there... it took a drop by an open receiver to get it, but still a forced punt.
MM needs to go to the short passing game, to set up shots down field and open up what meager run opportunities might be there.wist
Comment


Comment