本文介绍了算不了。通过SQL查询从db访问?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我想要完全没有。访问过的患者。 i将以下代码用c#作为: OleDbCommand vst = new OleDbCommand(select_get(*)from old_patient where Contact_no = @Contact_no GROUP BY Contact_no,cn); vst.Parameters.Add(new OleDbParameter(@ Contact_no,txtsno.Text)); //将值存储在rec变量中。 int rec =(int)vst.ExecuteNonQuery(); lbldtr.Text = rec.ToString(); txtsno是文本框; lbldtr是我希望显示或打印答案的标签。 $ t $ bxtsno文本框中的b $ b有联系号码。所以,我希望得到特别的联系。访问。 提前谢谢 我尝试了什么: OleDbCommand vst = new OleDbCommand(从old_patient中选择count(*),其中Contact_no = @ Contact_no GROUP BY Contact_no,cn); vst.Parameters.Add(new OleDbParameter(@ Contact_no,txtsno.Text)); //将值存储在rec变量中。 int rec =(int)vst.ExecuteNonQuery(); lbldtr.Text = rec.ToString(); 解决方案 i want to total no. of visited patient.i make following code in c# as:OleDbCommand vst = new OleDbCommand("select count(*) from old_patient where Contact_no=@Contact_no GROUP BY Contact_no", cn); vst.Parameters.Add(new OleDbParameter("@Contact_no", txtsno.Text)); // store value in rec variable. int rec = (int)vst.ExecuteNonQuery(); lbldtr.Text = rec.ToString();txtsno is textbox;lbldtr is label where i want to show or print answer.in txtsno textbox have contact no. so , i want to get particular contact no. visit.thank u in advanceWhat I have tried:OleDbCommand vst = new OleDbCommand("select count(*) from old_patient where Contact_no=@Contact_no GROUP BY Contact_no", cn); vst.Parameters.Add(new OleDbParameter("@Contact_no", txtsno.Text)); // store value in rec variable. int rec = (int)vst.ExecuteNonQuery(); lbldtr.Text = rec.ToString(); 解决方案 这篇关于算不了。通过SQL查询从db访问?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-11 12:25