I'm trying to get data from PostgreSQL from another computer and move to MySQL on my local computer.
I got libmysql55.dll from Zeos repository.
I had to create a program to fix a lot of mistakes over database.
One error is happening:
SQL Error: Access denied for user 'xxxx'@'localhost' (using password: YES)
I have information about: database, hostname, user and password.
ZConPropro.HostName := edtProproIP.Text;
ZConPropro.User := edtUser.Text;
ZConPropro.Password := edtPassword.Text;
ZConPropro.Database := edtDatabase.Text;
The problem is happening when I try to connect:
ZConPropro.Connected := True;
I selected protocol: PostgreSQL and after postgresql9 and nothing is happening.
I would like to know if someone has this problem and there is some parameter to change.
I'm connecting to this database with HeidiSQL without a problem...same user, password, and database.