Uploaded image for project: 'Jira Data Center'
  1. Jira Data Center
  2. JRASERVER-2421

BugzillaImport. There is no way to specify additional params for database connection

    XMLWordPrintable

Details

    Description

      There isno way to specify additional params in database connection because of method getCompleteURL(). Please applay the following fix to method getCompleteURL() if you like it

      StringBuffer completeURL = new StringBuffer(url);
      String name = TextUtils.noNull(getName()).trim();
      if (TextUtils.stringSet(name))

      { char prefix = (url.indexOf('?') > 0) ? '&' : '?'; completeURL.append(prefix + "user=" + name); }

      String password = TextUtils.noNull(getPassword()).trim();
      if (TextUtils.stringSet(password))

      { char prefix = (url.indexOf('?') > 0) ? '&' : '?'; completeURL.append(prefix + "password=" + password); }

      return completeURL.toString();

      Attachments

        Activity

          People

            Unassigned Unassigned
            da168f590483 Alex Falca
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: