I have some null values in the db which throws some errors, so I decided to set it to something if it was null and move on. Checking for null doesn't appear to do anything.
if (rdr.GetString("timeOut") == null)
{
queryResult.Egresstime = "Logged in";
}
else
{
queryResult.Egresstime = rdr.GetString("timeOut");
}
It always defaults to the else and errors even when I know null values are going through (at least the mysql query shows null values)
Error message:
LogDAO build list: System.Data.SqlTypes.SqlNullValueException: Data is Null. This method or property cannot be cal led on Null values. at MySql.Data.MySqlClient.MySqlDataReader.GetFieldValue(Int32 index, Boolean checkNull) at MySql.Data.MySqlClient.MySqlDataReader.GetString(Int32 i) at MySql.Data.MySqlClient.MySqlDataReader.GetString(String column)