How to check if DataReader value is not null?(如何检查 DataReader 值是否为空?)
问题描述
我正在编写通过 SQL 查询读取 Oracle 表的 VB.Net 代码.
I'm writing a VB.Net code that reads an Oracle Table through an SQL query.
SQL 查询可能会返回一些空列.我正在尝试检查这些列是否为空,但我收到错误 Oracle.DataAccess.dll 中发生类型为System.InvalidCastException"的异常,但未在用户代码中处理.该列包含一些空数据
The SQL query may return some null columns. I'm trying to check if these columns are null or not but I'm receiving the error An exception of type 'System.InvalidCastException' occurred in Oracle.DataAccess.dll but was not handled in user code. The column contains some Null Data
这是我的代码:
Dim Reader as OracleDataReader
'Execute the query here...
Reader.Read()
If IsNothing(Reader.GetDateTime(0)) Then 'Error here !!
'Do some staff
end if
有人知道如何检查列是否为空吗?
Does anyone have an idea on how to check if a column is null please ?
谢谢
推荐答案
Nothing
表示对象尚未初始化,DBNull
表示数据未定义/缺失.有几种方法可以检查:
Nothing
means an object has not been initialized, DBNull
means the data is not defined/missing. There are several ways to check:
' The VB Function
If IsDBNull(Reader.Item(0)) Then...
GetDateTime
方法有问题,因为您要求它将非值转换为 DateTime.Item()
返回可以在转换之前轻松测试的对象.
The GetDateTime
method is problematic because you are asking it to convert a non value to DateTime. Item()
returns Object which can be tested easily before converting.
' System Type
If System.DBNull.Value.Equals(...)
您也可以使用 DbReader.这仅适用于序数索引,不适用于列名:
You can also the DbReader. This only works with the ordinal index, not a column name:
If myReader.IsDbNull(index) Then
基于此,您可以将函数放在一起作为共享类成员,也可以重新编写为扩展以测试 DBNull 并返回默认值:
Based on that, you can put together functions either as Shared class members or reworked into Extensions to test for DBNull and return a default value:
Public Class SafeConvert
Public Shared Function ToInt32(Value As Object) As Integer
If DBNull.Value.Equals(Value) Then
Return 0
Else
Return Convert.ToInt32(Value)
End If
End Function
Public Shared Function ToInt64(Value As Object) As Int64
If DBNull.Value.Equals(Value) Then
Return 0
Else
Return Convert.ToInt64(Value)
End If
End Function
' etc
End Class
用法:
myDate = SafeConvert.ToDateTime(Reader.Item(0))
对于 DateTime 转换器,您必须决定返回什么.我更喜欢单独做这些.
For a DateTime converter, you'd have to decide what to return. I prefer to do those individually.
这篇关于如何检查 DataReader 值是否为空?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何检查 DataReader 值是否为空?
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- SQL 临时表问题 2022-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01