Menu

Using Password (YES)

Help
2008-06-06
2013-04-02
  • Nobody/Anonymous

       
    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

     
    • Nobody/Anonymous

      the password is incorrect or the server version does not match the password algorithm in the client.

       
    • Nobody/Anonymous

      the password is correct and

      MySQL Server Version: 5.0.32

       
    • Nobody/Anonymous

      I have same problem. Server version 5.0.45-community-nt

       

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.