Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using MySql.Data;
- using MySql.Data.MySqlClient;
- namespace MySqlDataGridView
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- private void button1_Click(object sender, EventArgs e)
- {
- string server;
- string database;
- string uid;
- string password;
- server = "localhost";
- database = "ecommerce";
- uid = "root";
- password = "";
- string connectionString;
- connectionString = "SERVER=" + server + ";" + "DATABASE=" +
- database + ";" + "UID=" + uid + ";" + "PASSWORD=" + password + ";";
- MySqlConnection con = new MySqlConnection(connectionString);
- con.Open();
- string query = "SELECT * FROM catalog";
- MySqlCommand cmd = new MySqlCommand(query, con);
- MySqlDataReader dr = cmd.ExecuteReader();
- BindingSource bs = new BindingSource();
- bs.DataSource = dr;
- dataGridView1.DataSource = bs;
- con.Close();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement