MySQL Forums
Forum List  »  Delphi

Delphi 7 vs MySQL 4.1, access denied for user 'testik'@'localhost'
Posted by: jurekk jurekk
Date: November 16, 2006 03:53AM

Hi,
can anybody help me? What is wrong in this code?

var
Connection: TSQLConnection;
begin
Connection := TSQLConnection.Create(nil);
Connection.DriverName := 'dbxopenmysql';
Connection.GetDriverFunc := 'etSQLDriverMYSQL41';
Connection.LibraryName := 'dbxopenmysql41.dll';
Connection.VendorLib := 'libmysql.dll';
Connection.Params.Append('Database=test');
Connection.Params.Append('User_Name=test');
Connection.Params.Append('Password=test');
Connection.Params.Append('HostName=62.168.126.6');
Connection.Open;

Options: ReplyQuote


Subject
Written By
Posted
Delphi 7 vs MySQL 4.1, access denied for user 'testik'@'localhost'
November 16, 2006 03:53AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.