通过在combox选择一个信息 然后以这个信息是数据库中的某个属性值查询条件 然后通过这个属性值设立查询条件 查询多个结果 就是相当于SQL中 select name,age,sex from "我的表名(或者视图名)"where=“ ” 里面是刚才combox里面选择的那个条件 把结果显示在几个textbox里面 跪求 解决后重谢
你的sql语句都有问题,这样写: select name,age,sex from tableName where name=((string)MyComboBox.SelectedItem);
private void XAML_CoB_View_SelectionChanged(object sender, SelectionChangedEventArgs e) { string _string = (XAML_CoB_View.SelectedItem as ComboBoxItem).Content.ToString(); }
我主要问的是如何绑定数据库呢
@羽零落: 不是传条件给sql语句吗,什么绑定数据库,说清楚一点。
@荒野的呼唤: 你有Q吗 找你吧
combox获得的是查询条件,你将条件组织成sql语句,查到的结果需要string类型的数据,才能放到textbox里面,如果不是的话,也要把数据组织成string类型的
但是 现在我不知道怎样 将combox转化为查询条件啊
能教下吗?
解决后重谢
private void XAML_CoB_View_SelectionChanged(object sender, SelectionChangedEventArgs e) { string _string = (XAML_CoB_View.SelectedItem as ComboBoxItem).Content.ToString(); string sql=string.Format("select name,age,sex from tableName where name='{0}'",_string); //在这里执行sql语句 }
@羽零落:
@az235: 前面的是接口函数吗?
@羽零落: 这个是combox的值被改变事件