Click here to Skip to main content
15,900,815 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi I write app C# to add data to mysql database, its success.
Now I want to add data to remote mysql database.
For example, my C# app run in laptop have IP 192.168.1.2 and I want to use this app to add data to mysql in other laptop with IP 192.168.1.10.
Please help me. Thanks.
Posted
Comments
AndrewCharlz 3-Oct-14 8:12am    
instead of localhost use the system ip address
say 192.168.1.10
Member 10390715 3-Oct-14 12:11pm    
thanks, I will try it
Member 10390715 3-Oct-14 12:17pm    
sorry, Should I change mysql database address (in Laptop have IP 192.168.1.10)?
How do you change MYSQL's localhost to your IPAddress?
Can you show me?

If you coded this right, all you have to do is change your connectionstring in the config file.
 
Share this answer
 
Comments
Member 10390715 3-Oct-14 12:11pm    
thanks, I will try it
The trouble in executing the command is mostly caused by the ConnectionString for the SQL connection. As already mentioned, you need to test the ConnectionString and the server name that you're calling the data from.

You can get the connectionStrings from http://www.connectionstrings.com/mysql/[^]. Mostly, the Server part is the part that you need to focus on the most. Because you connect to the server in that part of the string. So, specifying the IP address, Server name would go there.

Also, make sure that the remote connection for every user or the required users is allowed, http://stackoverflow.com/questions/8380797/enable-remote-mysql-connection[^]. Give this a read.
 
Share this answer
 
Comments
Member 10390715 4-Oct-14 9:01am    
thank for your help.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900