I have this method:
Private Function convertInteger(intInteger As Object) As Integer If IsDBNull(intInteger) Then convertInteger = 0 Else convertInteger = cInt(intInteger) End If End Function
But it returns this error:
operator '=' is not defined for type 'integer' and type 'dbnull'
Im trying to convert a DBnull value to 0 ..
But the problem is that the im value trying to convert is not always DBnull .. so how should I handle this?
source share