sql >> Database teknologi >  >> RDS >> Mysql

MySQL med C#, fra en PHP-udviklers synspunkt

Dette er sandsynligvis den mest typiske ADO.NET-kode til at udfylde DataGrid, du vil se (ved at bruge afbrudte datasæt, dvs.):

DataTable results = new DataTable();

using(MySqlConnection conn = new MySqlConnection(connString))
{
    using(MySqlCommand command = new MySqlCommand(sqlQuery, conn))
    {
        MySqlDataAdapter adapter = new MySqlDataAdapter(command);
        conn.Open();
        adapter.Fill(results);
    }
}

someDataGrid.DataSource = results;
someDataGrid.DataBind();



  1. Find række med maksimal værdi af id i MySQL

  2. Hvor kan jeg downloade kilde til MySQL Connector/J

  3. MySQL grupperer resultater efter tidsperioder

  4. Kan vi have tabelnavnet som mulighed i MySQL?