Hello Friends I want to Send the Data from local database to Server MYSQL database How it is possible.Means Local server to the Remote Server.
I also Found this link But it is not working.
Hello Friends I want to Send the Data from local database to Server MYSQL database How it is possible.Means Local server to the Remote Server.
I also Found this link But it is not working.
As per my understanding with your problem, you want to import data from your local machine mysql to remote machine mysql, if it is so then you can try as per below-
First of all provide permission on remote machine to your local ip then use below command-
If your local machine is linux-
mysqldump -uroot1 -proot1123 your_db your_table | mysql -h remote_ip -uroot2 -proot2123 your_remote_db
Here root1 is a user on your local machine and its password is root1123 while root2 is a remote machine user and its password is root2123
If your local machine is windows then first go to your mysql bin directory by cd command in command prompt and then use above statement.