MyNotes Installation
====================

MyNotes.zip contains:
1. mynote.exe
2. libmysql.dll
3. mynotes.chm
4. Install.txt
5. readme1st.txt

To install, just copy these programs to any folder.

Note:
MyNotes.exe was built using Visual C++ 6.0 SP6 with MySQL++ 1.7.1 Win32 VC++ version
and tested with MySQL server 4.1.x and 5.0.15

If you have this error message:
Client does not support authentication protocol

You need to do this step.
Reset the password to pre-4.1 style for each user that needs to use a pre-4.1 client program.
This can be done using the SET PASSWORD statement and the OLD_PASSWORD() function:

mysql> SET PASSWORD FOR
    -> 'some_user'@'some_host' = OLD_PASSWORD('newpwd');

Alternatively, use UPDATE and FLUSH PRIVILEGES:

mysql> UPDATE mysql.user SET Password = OLD_PASSWORD('newpwd')
    -> WHERE Host = 'some_host' AND User = 'some_user';
mysql> FLUSH PRIVILEGES;

Substitute the password you want to use for "newpwd" in the preceding examples.
MySQL cannot tell you what the original password was, so you'll need to pick a new one.

Source URL: http://dev.mysql.com/doc/refman/5.0/en/old-client.html

