I am trying to Connect my livecode app with the Mysql server.I works well when i use it on localserver.But When i try to connect it with Live Mysql database. Its gives an error
access denied for user 'myusername'localhost'(using password='YES').
I am using this for connecting:
put "localhost" into tDatabaseAddress
put "dbname" into tDatabaseName
put "myusername" into tDatabaseUser
put "mypassword" into tDatabasePassword
put revOpenDatabase("MySQL", tDatabaseAddress, tDatabaseName, tDatabaseUser, tDatabasePassword) into tDatabaseID
Please help. How can I resolve this?