Properties | Initial Value |
---|---|
ConnectionString | empty string ("") |
ConnectionTimeout | 15 |
Database | empty string ("") |
Host | empty string ("") |
Password | empty string ("") |
Port | 3306 |
UserId | empty string ("") |
public void CreateMySqlConnection() { MySqlConnection myConnection = new MySqlConnection(); myConnection.ConnectionString = "User Id=root;Host=localhost;Database=Test;"; myConnection.Open(); //Do something myConnection.Close(); }
Public Sub CreateMySqlConnection() Dim myConnection As New MySqlConnection() myConnection.ConnectionString = _ "User Id=root;Host=localhost;Database=Test;" myConnection.Open() 'Do something myConnection.Close() End Sub
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2