使用 VB.Net
我想检查表格行是空还是0
代码
sCmd = New SqlCommand("SELECT * from table1)", conObjects.myConnection)
dReader = sCmd.ExecuteReader
While dReader.Read()
If dReader.Item(11) <> "0" And dReader.Item(11) IsNot Nothing Then
msgbox ("Not NUll or 0")
End if
End while
将错误显示为“ Operator '<>' is not defined for type 'DBNull' and string "0"
”
为什么我收到此错误,如何解决此问题。
需要 VB.Net 代码帮助