web.con

How to create MySQL connection string

The following is a sample MySQL connection string:

Server=127.0.0.1;Uid=user;Pwd=userpassword;Database=allusers;

In this example, the MySqlConnection object is configured to connect to a MySQL server at 127.0.0.1, with a user name of user and a password of userpassword. The default database for all statements will be the allusers database.

Related TutorialsHow to create Oracle …

Learn more