我正在尝试使用以下代码从我的数据库中获取score_Waarde值:
critid = critid_arr[teller2].ToString(); int scorehulp = 0; string userid = Session["userid"].ToString(); sqlCommand cmd3 = new sqlCommand("SELECT score_Waarde FROM score WHERE Crit_ID = '" + critid + "' AND User_ID = '" + userid + "' ",con); scorehulp = (int)cmd3.ExecuteScalar();
当我尝试运行它时,我收到以下错误:指定的强制转换无效.
我不明白为什么我会收到此错误,因为critid和userid正在给出正确的值.
解决方法
您的sql可能会返回不同的数字类型,例如long或decimal,或者显然是字符串.
调用Convert.ToInt32,它没有limitations of an unboxing cast.