开发者

How to avoid IndexOutOfRangeException indexing DataReader columns?

开发者 https://www.devze.com 2022-12-19 09:43 出处:网络
I am having a little trouble with an \'IndexOutOfRangeException\'. I think it is because when the code tries to get the DateModified col from the database it sometimes contains NULLS (the users haven\

I am having a little trouble with an 'IndexOutOfRangeException'. I think it is because when the code tries to get the DateModified col from the database it sometimes contains NULLS (the users haven't always updated the page since they created it).

Here is my code;

s = ("select datemodified, maintainedby, email, hitcount from updates where id =   @footid")
Dim x As New SqlCommand(s, c)
x.Parameters.Add("@footid", SqlDbType.Int)
x.Parameters("@footid").Value = footid
c.Open()
Dim r As SqlDataReader = x.ExecuteReader
While r.Read
    If r.HasRows Then
        datemodified = (r("DateModified"))
        maintainedby = (r("maintainedby"))
        email = (r("email"))
        hitcount = (r("hitcount"))
    End If
End While
c.Close()

I thought (after a bit of msdn) that adding;

If r.HasRows Then 

End If 

Would solve the problem, but so far after add开发者_StackOverflow中文版ing I am still getting the same old IndexOutOfRangeException

(ps, I have tried datemodified as string / datetime)


Try r.IsDBNull(columnIndex).


Does changing

datemodified = (r("DateModified")) 

to

datemodified = (r("datemodified")) 

work?


I have tried to recreate you issue by passing in nulls, empty sets. I can't recreate it in the sample of code you provided. Would you mind posting more code, maye even the whole page? Is there a line number that the error happens on? I would like to dig in further.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号