Mysql:即使作为参数给出的变量是正确的,也会返回null

时间:2017-01-25 18:28:57

标签: c# mysql

即使在调试器中检查loc值是否正确后,我仍然从查询中返回一个空值。我做错了什么?

     {
         myCommand.CommandText = "select idkooilist FROM locatie where id = @IDOP";
         myCommand.Parameters.Add("@IDOP", MySqlDbType.Int64).Value = loc;
         {                 
              var count = myCommand.ExecuteScalar();    
              lockooid = Convert.ToInt64(count);
         }
    }

0 个答案:

没有答案