Hello,
I get the errors mentioned in the subject. I have given the source code:
procedure TForm1.Button1Click(Sender: TObject); begin // Eigenschaften setzen FMysql.Host := 'x.x.x.x'; FMysql.port := 3306; FMysql.user :='xxx'; FMysql.password:='xxx'; FMysql.UnixSocket := ''; FMysql.Db := 'Interpreten'; // Datenbank auf dem Server FMysql.UseNamedPipe := false; FMysql.UseSSL := false; FMysql.Compress := true; FMysql.TrySockets := false; if FMysql.Connect then ShowMessage('Verbindung aufgebaut') else ShowMessage('Fehler beim Verbinden: '+FMysql.LastError); end;
Thank you in advance
the password is incorrect or the server version does not match the password algorithm in the client.
the password is correct and
MySQL Server Version: 5.0.32
I have same problem. Server version 5.0.45-community-nt
Log in to post a comment.
Hello,
I get the errors mentioned in the subject. I have given the source code:
procedure TForm1.Button1Click(Sender: TObject);
begin
// Eigenschaften setzen
FMysql.Host := 'x.x.x.x';
FMysql.port := 3306;
FMysql.user :='xxx';
FMysql.password:='xxx';
FMysql.UnixSocket := '';
FMysql.Db := 'Interpreten'; // Datenbank auf dem Server
FMysql.UseNamedPipe := false;
FMysql.UseSSL := false;
FMysql.Compress := true;
FMysql.TrySockets := false;
if FMysql.Connect then
ShowMessage('Verbindung aufgebaut')
else
ShowMessage('Fehler beim Verbinden: '+FMysql.LastError);
end;
Thank you in advance
the password is incorrect or the server version does not match the password algorithm in the client.
the password is correct and
MySQL Server Version: 5.0.32
I have same problem. Server version 5.0.45-community-nt