ExecuteReader
このようなすべてのフィールドに対してすべてを選択するために使用します(SELECT *)
string query = "SELECT* FROM tb_patient_information ";
if (this.OpenConnection() == true)
{ //Create Command
MySqlCommand cmd = new MySqlCommand(query, connection);
//Create a data reader and Execute the command
MySqlDataReader dataReader = cmd.ExecuteReader();
while (dataReader.Read())
{ ... }
しかし、赤い四角のように特定の列とセルでのみ選択したい..この写真のように