如何查找数据表中的列是否为空(或)。如果我的数据集(DS)包含1个Data_Table和2列。我想检查第2列是否为空(或)。
答案 0 :(得分:0)
如果您说数据集中有一个2列表,那么请执行...
isColumnEmpty = false;
DataColumn column = dataSet.Tables[0][1]; // get column 2 from table 1
foreach(DataRow row in column)
{
if (row[0] == null) // check the only column of this row
then isColumnEmpty = true;
break;
}