dotConnect for MySQL Documentation
Devart.Data.MySql Namespace / MySqlConnection Class / MySqlConnection Constructor / MySqlConnection Constructor(String)
The connection used to connect to MySQL.
Example

MySqlConnection Constructor(String)
Initializes a new instance of the MySqlConnection class when given a string containing the connection string.
Syntax
'Declaration
 
Public Function New( _
   ByVal connectionString As String _
)
 

Parameters

connectionString
The connection used to connect to MySQL.
Remarks
When a new instance of MySqlConnection is created, the read/write properties are set to the following initial values unless they are specifically set using their associated keywords in the ConnectionString property.
Properties Initial Value
ConnectionString connectionString
ConnectionTimeout 15
Database empty string ("")
Host empty string ("")
Password empty string ("")
Port 3306
UserId empty string ("")
Example
The following example creates and opens a MySqlConnection.
public void CreateMySqlConnection()
{
  string myConnString = 
      "User Id=root;Host=localhost;Database=Test;";
  MySqlConnection myConnection = new MySqlConnection(myConnString);
  myConnection.Open();
  //Do something
  myConnection.Close();
}
Public Sub CreateMySqlConnection()
  Dim myConnString As String = _
      "User Id=root;Host=localhost;Database=Test;"
  Dim myConnection As New MySqlConnection(myConnString)
  myConnection.Open()
  'Do something
  myConnection.Close()
End Sub
Requirements

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

See Also