How to get float value with SqlDataReader?

前端 未结 7 2267
执念已碎
执念已碎 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:20

    Probably is precision mismatch between database type and c# type. Try cast like (float)reader.GetDouble(0);

提交回复
热议问题