C# 中用 combobox 实现多条件的多次查询
privatevoidbtnSearch_Click(objectsender,EventArgse){strWhere="selectRM_ID客房编号,RT_Name...
private void btnSearch_Click(object sender, EventArgs e)
{
strWhere = "select RM_ID 客房编号,RT_Name 客房类型, RM_Position 房间楼层,RM_PeopleNum 额定人数, RM_Status 客房状态 from RoomMessage,RoomType where RoomMessage.RT_ID=RoomType.RT_ID ";
if (this.textRoomID.Text != "")
{
strMidle = "and RM_ID like'%" + this.textRoomID.Text.Trim().ToString() + "%'";
strWhere += strMidle + "";
}
if (this.comboRoomType.Text.Trim()!= "")
{
this.strMidle += "and RT_Name like'%" + this.comboRoomType.Text + "%'";
strWhere += strMidle + "";
}
if (this.comboRoomPosition.Text != "")
{
this.strMidle += "and RM_Position like'%" + this.comboRoomPosition.Text + "%'";
strWhere += strMidle + "";
}
if (this.comboRoomStatus.Text != "")
{
this.strMidle += "and RM_Status like'%" + this.comboRoomStatus.Text + "%'";
strWhere += strMidle + "";
}
DataSet myds = db.getds(strWhere, "RommMessage");
dataGridView1.DataSource = myds.Tables[0];
上面是代码,可是只能进行一次查询,不能进行多次。比如 在客房类型中选择单人间后,点查询,DataGridView就会显示 所查询到的内容。当再次选择双人间时,点查询,就不会显示内容了. 大家看看那里出了问题?
二楼 说的对,问题解决了,就是将strMidle=""; 谢谢了 展开
{
strWhere = "select RM_ID 客房编号,RT_Name 客房类型, RM_Position 房间楼层,RM_PeopleNum 额定人数, RM_Status 客房状态 from RoomMessage,RoomType where RoomMessage.RT_ID=RoomType.RT_ID ";
if (this.textRoomID.Text != "")
{
strMidle = "and RM_ID like'%" + this.textRoomID.Text.Trim().ToString() + "%'";
strWhere += strMidle + "";
}
if (this.comboRoomType.Text.Trim()!= "")
{
this.strMidle += "and RT_Name like'%" + this.comboRoomType.Text + "%'";
strWhere += strMidle + "";
}
if (this.comboRoomPosition.Text != "")
{
this.strMidle += "and RM_Position like'%" + this.comboRoomPosition.Text + "%'";
strWhere += strMidle + "";
}
if (this.comboRoomStatus.Text != "")
{
this.strMidle += "and RM_Status like'%" + this.comboRoomStatus.Text + "%'";
strWhere += strMidle + "";
}
DataSet myds = db.getds(strWhere, "RommMessage");
dataGridView1.DataSource = myds.Tables[0];
上面是代码,可是只能进行一次查询,不能进行多次。比如 在客房类型中选择单人间后,点查询,DataGridView就会显示 所查询到的内容。当再次选择双人间时,点查询,就不会显示内容了. 大家看看那里出了问题?
二楼 说的对,问题解决了,就是将strMidle=""; 谢谢了 展开
3个回答
展开全部
不知道对于 comboBox1 的定义是出于什么需求,如果在可视化开发环境下添加了新的控件,是不需要自己去 new 的,开发环境已经自定了实例化语句。
特别注意的是ComboBox comboBox1 = new ComboBox(); 只能添加在
comboBox1.Items.Add("第一项");
comboBox1.Items.Add("第二项");
这两句之前,如果在这条语句执行后又执行了 new 语句,那肯定之前添加的内容就没有了。因为 new 语句对于引用类型来说实际上是重新定义了一个对象。
特别注意的是ComboBox comboBox1 = new ComboBox(); 只能添加在
comboBox1.Items.Add("第一项");
comboBox1.Items.Add("第二项");
这两句之前,如果在这条语句执行后又执行了 new 语句,那肯定之前添加的内容就没有了。因为 new 语句对于引用类型来说实际上是重新定义了一个对象。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
请问一下你的strmiddle是怎么定义的呢?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询