JBTALKS.CC

标题: 帮帮忙!关于c# [打印本页]

作者: karen_er30    时间: 2010-10-11 06:26 PM
标题: 帮帮忙!关于c#
string query3 = "Select Sum (totalout * unitcost) from [Inventory]";
        SqlCommand command3 = new SqlCommand(query3, Connection);
      
        SqlDataReader reader3 = command3.ExecuteReader();
        reader3.Read();
        double num3 = System.Convert.ToDouble(reader3.GetInt32(0));
        reader3.Close();


出现以下error:
InvalidCastException was unhandled by  user code
Specified cast is not valid.

哪里出了问题?
作者: 宅男-兜着走    时间: 2010-10-11 06:47 PM
string query3 = "Select Sum (totalout * unitcost) from ";
        SqlCommand command3 = new SqlComm ...
karen_er30 发表于 2010-10-11 06:26 PM

  1. double num3 = System.Convert.ToDouble(reader3.GetInt32(0).ToString());

复制代码
尝试看。
作者: karen_er30    时间: 2010-10-11 07:00 PM
回复 2# 宅男-兜着走


   谢谢,我试了,还是有一样的问题。。




欢迎光临 JBTALKS.CC (https://www.jbtalks.cc/) Powered by Discuz! X2.5