C#之获取mysql数据库中的行数并返回与某控件比较的bool值

1、用数据库操作获取数据库的行数值

select count(*)  from [表名] where [查询条件] 

2、使用command.ExecuteScalar()返回操作数,因为ExecuteScalar()方法不能确定返回值类型,所以返回的类型是object类型的数据。

3、使用强制转换方法,将object数据类型转换成int型:Convert.ToInt32()

4、封装bool类型数据,必须返回bool值。

如下:

  private bool VaFinalNum() {

            string sql3 = "select count(*)  from tb_question where type='" + comboBox1.Text + "'";
            try
            {
                MySqlCommand command = new MySqlCommand(sql3, dbCon.connection);


                dbCon.connection.Open();
                if (Convert.ToInt32(command.ExecuteScalar()) > int.Parse(label3.Text))
                {
                    return true;
          
                }
                else { return false ; }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
                return false;


            }
            finally
            {
                dbCon.connection.Close();
            }
        }

你可能感兴趣的:(基础理论类,C#)