Connecting from Code
The CData ADO.NET Provider for MySQL implements a standard DbConnection object in MySQLConnection. You can also use the MySQLConnectionStringBuilder to programmatically build, parse, and rebuild connection strings.
Creating Connection Objects
See Establishing a Connection for guides to defining the connection string and authenticating. Below is a typical invocation to create MySQLConnection objects.
C#
using (MySQLConnection connection =
new MySQLConnection("User=myUser;Password=myPassword;Database=NorthWind;Server=myServer;Port=3306;"))
{
connection.Open();
}
VB.NET
Using connection As New MySQLConnection("User=myUser;Password=myPassword;Database=NorthWind;Server=myServer;Port=3306;")
connection.Open
End Using
Using MySQLConnectionStringBuilder
The following code example shows how to use an ADO.NET connection string builder to parse a connection string.
C#
MySQLConnectionStringBuilder builder =
new MySQLConnectionStringBuilder("User=myUser;Password=myPassword;Database=NorthWind;Server=myServer;Port=3306;");
//Pass the connection string builder an existing connection string, and you can get and set any of the elements as strongly typed properties.
builder.ConnectionString = "User=myUser;Password=myPassword;Database=NorthWind;Server=myServer;Port=3306;";
//Now that the connection string has been parsed,
// you can work with individual items:
builder.MyString = "new property";
builder.MyBoolean = true;
// You can refer to connection keys using strings,
// as well.
builder["Logfile"] = "test.log";
builder["Verbosity"] = 5;
VB.NET
Dim builder As MySQLConnectionStringBuilder = New MySQLConnectionStringBuilder("User=myUser;Password=myPassword;Database=NorthWind;Server=myServer;Port=3306;")
'Pass the connection string builder an existing connection string, and you can get and set any of the elements using strongly typed properties.
builder.ConnectionString = User=myUser;Password=myPassword;Database=NorthWind;Server=myServer;Port=3306;"
'Now that the connection string has been parsed,
' you can work with individual items:
builder.MyString = "new property"
builder.MyBoolean = True
' You can refer to connection keys using strings,
' as well.
builder("Logfile") = "test.log"
builder("Verbosity") = 5