jdbc:mysql://[hostname][:port]/dbname[?param1=value1][=value2]...
      ...            try {
                Connection C = DriverManager.getConnection(
                  "jdbc:mysql://localhost/test?user=monty=greatsqldb");
                
                // Do something with the Connection
                
                ....
            }
            catch (SQLException E) {
              System.out.println("SQLException: " + E.getMessage());
              System.out.println("SQLState:     " + E.getSQLState());
              System.out.println("VendorError:  " + E.getErrorCode());
            }