How to get float value with SqlDataReader?

前端 未结 7 2268
执念已碎
执念已碎 2020-12-20 13:49

In my database, I have NextStatDistanceTime value as a float. When \"float time = reader.GetFloat(0);\" line excecuted, it gives an error of

7条回答
  •  清歌不尽
    2020-12-20 14:08

    My guess is that Database is returning double value, try getting it as Double and convert it float (if required).

    float time= (float) reader.GetDouble(0);
    

提交回复
热议问题