Hi,
I'm developing a project using Visual Studio 2005 and am using MS SQL server locally to host my database. Now, I need to upload my project to the server, and in the server, it only has mySQL. I've read it that its possible to use mySQL database for ASP.Net applications, is it as easy as changing the web.config file settings to map to the new mySQL database?
The following is the extract of my web.config to database for my local system.
<connectionStrings>
<add name="PassiongpConnectionString" connectionString="Data Source=DESKTOP;Initial Catalog=PassionGP;Integrated Security=True"/>
</connectionStrings>
For the server, the
server name is: mysql.readyserver.net
port: 3306
database: fakeDB
username: fakeUser
password: fakePassword
How do I change the connection string of my web.config in order to connect to the database in the server? Any help is appreciated and its very urgent! Thanks! :)
ASKER
Can I just change the settings in web.config file? Anyway I'm using C# for my codes. Thanks for your prompt reply!