Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Isi Datagridview dengan data MySQL

       private void MySQL_ToDatagridview()
    {
        //VarribleKeeper.MySQLConnectionString = your connection string
       //info being your table name
        MySqlConnection mysqlCon = new  

        MySqlConnection(VarribleKeeper.MySQLConnectionString);
        mysqlCon.Open();

        MySqlDataAdapter MyDA = new MySqlDataAdapter();
        string sqlSelectAll = "SELECT * from info";
        MyDA.SelectCommand = new MySqlCommand(sqlSelectAll, mysqlCon);

        DataTable table = new DataTable();
        MyDA.Fill(table);

        BindingSource bSource = new BindingSource();
        bSource.DataSource = table;


        dataGridView1.DataSource = bSource;
    }


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. cara mengimplementasikan perintah sql yang rumit

  2. pastikan bahwa hasil metode pengambilan PDO salah adalah kesalahan atau hasil kosong

  3. Kesalahan:Metode atau operasi tidak diterapkan. saat membuat perancah Database MYSQL

  4. Dapatkan tipe variabel di MySQL

  5. apa cara yang tepat untuk mengonversi antara datetime mysql dan stempel waktu python?