Invalid cast exception when reading result from SQLDataReader

前端 未结 4 852
轻奢々
轻奢々 2021-02-19 05:31

My stored procedure:

    @UserName nvarchar(64),

    AS

    BEGIN
    SELECT MPU.UserName, SUM(TS.Monday)as Monday //TS.Monday contains float value
    FROM db         


        
4条回答
  •  灰色年华
    2021-02-19 06:07

    My guess is that the value is being returned as a boxed double instead of float. When you unbox the type has to be exactly right. So assuming I'm right and it's not decimal or something like that, you could use:

    float monday = (float) (double) reader["Monday"];
    

    and it would work. That's pretty ugly though. If you use SqlDataReader.GetFloat it should get it right if it's genuinely a single-precision value, and it's clearer (IMO) what's going on.

    On the other hand, your data could actually be coming back from the database as a double, in which case you should (IMO) use:

    float monday = (float) reader.GetDouble(column);
    

    As an aside, are you sure that float is actually the most appropriate type here in the first place? Often decimal is more appropriate...

提交回复
热议问题