facebook

DB Browser, Open DB Conn dialog — password entry problem

  1. MyEclipse Archived
  2.  > 
  3. Database Tools (DB Explorer, Hibernate, etc.)
Viewing 2 posts - 16 through 17 (of 17 total)
  • Author
    Posts
  • #251174 Reply

    Jim Farley
    Participant

    @support-snpe wrote:

    Paul,

    I attach is swt for carbon with patch for this bug
    I download eclipse 3.1.2 and change Text.java with eclipse patch
    https://bugs.eclipse.org/bugs/show_bug.cgi?id=104902

    – static final char PASSWORD = ‘\245’;
    + static final char PASSWORD = (‘\245’ << 8) + ‘\245’;

    and patched setEchoChar with this on start method

    if (echo != PASSWORD)
    echo = (char) ((echo << 8) + echo);

    I can’t test and you change org.eclipse.swt.carbon.macosx.ppc_3.1.1.jar with attached file
    You can test easy with PasswordSnippet (in message before)

    Best

    Thanks for putting this together, but it doesn’t work on Intel Macs. The libs included in the jar are PPC-only. Any chance you could build this with Universal libs?

    #251203 Reply

    Haris Peco
    Member

    Jim,

    Search this https://bugs.eclipse.org/bugs/show_bug.cgi?id=98889 and this
    http://sourceforge.net/project/showfiles.php?group_id=131065&package_id=183793&release_id=401995

    You will find patch for eclipse 3.1 and it is fixed complete in eclipse 3.2 from Apr 25

    Next MyEclipse release will work on eclipse 3.2

    Please, can you try snippet and last MyEclipse 3.2 (rc1 will work with snippet, and latest bug is for dialog fields)

    Best regards

Viewing 2 posts - 16 through 17 (of 17 total)
Reply To: DB Browser, Open DB Conn dialog — password entry problem

You must be logged in to post in the forum log in