How can I connect to mysql data base from windows forms?

link|improve this question

72% accept rate
feedback

5 Answers

up vote 3 down vote accepted

Numerous sample of connection strings here : http://www.connectionstrings.com/

link|improve this answer
thanx dude..it is really superb.im lovin it!! – srinivas Jul 9 '09 at 6:07
feedback

Use the Connector from here. There's a documentation too.

link|improve this answer
thanx buddy!keep rockin – srinivas Jul 9 '09 at 5:34
feedback

Read a Tutorial.

link|improve this answer
feedback

Here is a full article on connecting to mysql using Connector/Net 6.0.

Alternatively you can also use OleDb to connect to MySql.

link|improve this answer
feedback
private void button1_Click(object sender, System.EventArgs e)
{
    string MyConString = "SERVER=localhost;" +"DATABASE=mydatabase;" 
        "UID=testuser;" +"PASSWORD=testpassword;";
    MySqlConnection connection = new MySqlConnection(MyConString);
    MySqlCommand command = connection.CreateCommand();
    MySqlDataReader Reader;
    command.CommandText = "select * from mycustomers";
    connection.Open();
    Reader = command.ExecuteReader();
    while (Reader.Read())
    {
        string thisrow = "";                
        for (int i = 0;i<Reader.FieldCount;i++)     
            thisrow += Reader.GetValue(i).ToString() + ","; 
        listBox1.Items.Add(thisrow);
    }
    connection.Close(); 
}

i think this gonna be the simple one right!!! but thanx all of u guys for responding and providing me the documentation!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.