I have this function:
Code:
Public Function CheckNullReturnBolean(ByRef oRead as SqlDataReader, ByVal i as Short) as Boolean
If oRead.IsDBNull(i) then
Return vbNull
Else
Return oRead.GetDataType(i)
End If
End Function
The value in the reader is a bit field. What
Get data reader method would I use to pull out this value?
Thanks,
Jerry