对象不能从DBNull转换成其他类型
我在新加一条记录的时候在设置数据库记录的语句中提示出这个问题,什么意思呀
if (e.ColumnIndex == 5)
{
if (Convert.ToInt32(e.Value) > 500)
{
toolBasicDataDataGridView.Rows[e.RowIndex].DefaultCellStyle.ForeColor = Color.Blue;
}
else
{
toolBasicDataDataGridView.Rows[e.RowIndex].DefaultCellStyle.ForeColor = Color.Red;
}
}
新加时在数据库中出现一条空记录才能再添加记录呀,可是一点添加红色部分就提示不能转为其他类型 难道设置颜色后就只能看 不能增加?