Reputation: 258
I'm having problem trying to access the MySQL server (I'd like to replace a table with another) provided as part of the Windows Azure service. I have downloaded the publishsettings XML file, and the closest thing that I can find is 'Data Source=us-cdbr-azure-east-a.cloudapp.net;'. However, it's not accessible from the web browser, so I'm not sure what to do next.
Upvotes: 7
Views: 8301
Reputation: 23754
You can get the full connection string from the dashboard of your Azure Web Site
Then you can use those credentials in a MySQL administration program, such as MySQL Workbench.
Upvotes: 16