Announcement

Collapse
No announcement yet.

OFFICIAL Gameday Packers beat SF 49ers thread

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Don't care what Troy and Dogboy say, still rather see him throw than run.
    Bud Adams told me the franchise he admired the most was the Kansas City Chiefs. Then he asked for more hookers and blow.

    Comment


    • They held. Let's see if MM can call something that works.

      Cobb on returns. Jeremy Ross soon unemployed??
      "The Devine era is actually worse than you remember if you go back and look at it."

      KYPack

      Comment


      • cobb really went down funny at the end of that return

        lost my breath for a second

        Comment


        • now we need a nice long drive for a td.

          AND NO COBB ON RETURNS! IS MM CRAZY?

          Comment


          • 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


            • is that BW3 guy suppose to be landry?

              Comment


              • Finally some decent starting position.
                But Rodgers leads the league in frumpy expressions and negative body language on the sideline, which makes him, like Josh Allen, a unique double threat.

                -Tim Harmston

                Comment


                • Originally posted by gbgary View Post
                  now we need a nice long drive for a td.

                  AND NO COBB ON RETURNS! IS MM CRAZY?
                  Ross has not covered himself in glory, esp. on kickoffs.
                  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


                    • Really I wonder if Ross will lose his spot on the roster.
                      "The Devine era is actually worse than you remember if you go back and look at it."

                      KYPack

                      Comment


                      • Originally posted by pbmax View Post
                        Is Hyde not playing nickel? I thought Bush did not come in until dime?
                        Correct, Hyde been playing nickel
                        Go PACK

                        Comment


                        • stupid play call...

                          MM can really be an obtuse idiot sometimes.
                          wist

                          Comment


                          • OK, M3 is going to turn me into a hacker.
                            Bud Adams told me the franchise he admired the most was the Kansas City Chiefs. Then he asked for more hookers and blow.

                            Comment


                            • fuck our coach

                              Comment


                              • MM surprising me. Still running the ball!
                                "The Devine era is actually worse than you remember if you go back and look at it."

                                KYPack

                                Comment

                                Working...
                                X