display data from tables that contain a null value
- by user2631662
I need the code below to say - if myReader reads a null entry a new method is called. At the moment it will not display data from tables that contain a null value
conDataBase.Open();
myReader = cmdDataBase.ExecuteReader();
while (myReader.Read())
{
if (myReader["Code_CodeID"] !=…