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

I dati sono nulli. Questo metodo o proprietà non può essere chiamato su valori null. (usando la casella combinata)

Quando uno o più dei tuoi campi contengono un NULL (DBNull.Value) non puoi usare GetString su di essi.
È necessario verificare se sono null utilizzando il metodo IsDBNull e scegliere invece quale valore si desidera inserire nella casella di testo. Di solito è una stringa vuota

private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
    string constring = "datasource=localhost;port=3306;username=root;password=root";
    string Query = "SELECT * from database.check WHERE patientname IS NOT NULL";
    using(MySqlConnection conDataBase = new MySqlConnection(constring))
    using(MySqlCommand cmdDataBase = new MySqlCommand(Query, conDataBase))
    {
        try
        {
            conDataBase.Open();
            using(MySqlDataReader myReader = cmdDataBase.ExecuteReader())
            {
                int namePos = myReader.GetOrdinal("namethestore");
                int checkerPos = myReader.GetOrdinal("checkername");
                while (myReader.Read())
                {
                    string namethestore = myReader.IsDBNull(namePos) 
                                          ? string.Empty 
                                          : myReader.GetString("namethestore");
                    string checkername = myReader.IsDBNull(checkerPos) 
                                          ? string.Empty
                                          : myReader.GetString("checkername");
                    this.textBox65.Text = namethestore;
                    this.textBox66.Text = checkername;
                }
           }
      }
}

Suggerisco anche di utilizzare la using statement intorno agli oggetti usa e getta. Ciò garantirà una corretta chiusura e smaltimento quando non ne avrai più bisogno, anche in caso di eccezioni.....