Existing users, log in.  New users, create a free account.  Lost password?

1 comments |

MySql Version - vonkessel

Using MySQL 4.1 and Greater
As of MySQL version 4.1, MySQL uses a new password hashing schema. Due to a bug in RealBasic you must use the old MySQL password schema to connect to your databases. You must adjust your MySQL user account to use the old password schema. To do so, issue the following sql…

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

More information on this issue can be found here…
http://dev.mysql.com/doc/mysql/en/old-client.html This information is found in both the AboutSQLTunes.html and the FAQ found on our website.

Reply to This

Sunday, August 21 2005 @ 05:21 PM PDT