Ændring af ConnectionString til bruge af MySQL
Hej alle sammen!jeg er meget ny i C#, sidder med denne ConnectionString som jeg gerne ville bruge ifm. MySql. - mit forslag ses sidst på siden.
MS SQL:
static string connStr = ConfigurationManager.ConnectionStrings["NorthwindConnectionString1"].ConnectionString;
static string sql = @"SELECT [Name], [LastName] FROM [Persons]";
static SqlConnection con = new SqlConnection(connStr);
static SqlCommand command = new SqlCommand(sql, con);
SqlDataAdapter adapter = new SqlDataAdapter(command);
MySQL:
using MySql.Data.MySqlClient;
MySqlConnection myConnection = new MySqlConnection();
myConnection.ConnectionString = myConnectionString;
myConnection.Open();
//execute queries, etc
myConnection.Close();