DataReader Returns DBNULL
本文关键字:DBNULL Returns DataReader | 更新日期: 2023-09-27 18:32:57
我正在使用DataReader从我的sqlcommand中读取行。
我的问题是我想从我的数据库中返回所有列错误是他在一列中找到了 DBNull。
我该如何解决这个问题?
注意:返回 Null 的列是字符串类型。
while(sqlDataReader.Read())
{
if (sqlDataReader.HasRows)
{
mylist.Add(new User()
{
Id = (int)sqlDataReader["Id"],
Name = (string)sqlDataReader["Name"],
File= (string)sqlDataReader["File"] <-- This is the one which contains some columns Null
});
}
}
使用 DataReader 中的 IsDBNull() 方法。
if (sqlDataReader.HasRows)
{
while(sqlDataReader.Read())
{
if(!sqlDataReader.IsDBNull(1)) //pass the column index.
{
object value=sqlDataReader[1];
}
}
}
尝试:
File=(sqlDataReader["File"] as string).GetValueOrDefault("");
请参阅 GetValueOrDefault 的文档。