问题描述
如题所示:项目中,我在VS2005用C#写个UI(本地BOOS用,调用服务器的数据库),用的是PostgreSQL8.3数据库。现在可以一键在DataGridView调出所需数据库表情况:usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Text;usingSystem.Windows.Forms;usingNpgsql;usingSystem.Data.SqlClient;usingQingbao.Logic;usingQingbao.Data;usingQingbao.Module;namespaceQingbao.UI{internalpartialclassMainForm:Form{privatevoidbutton1_Click(objectsender,EventArgse){NpgsqlConnectionconn=newNpgsqlConnection("Server=192.168.0.80;Port=5432;UserId=postgres;Password=frssrs;Database=postgres;");conn.Open();NpgsqlCommandcommand=newNpgsqlCommand("select*fromconvection",conn);DataSetds=newDataSet();try{dataGridView1.DataSource=ds.Tables[0];}finally{conn.Close();}}}}现在在界面中添加了TreeView与ComboBox,欲实现动态显示查询,请问大侠女侠该如何搞定,或者参考什么。就是说本意通过单击TreeView的节点来分类查询,将表反映到DataGridView中,而TreeView的节点希望是随着每次UI端与服务器数据库建立都会更新“比如今天多了个分公司,明天少了个操作类型”,而同样道理,ComboBox是用来输入或选中搜索条件进行详细搜索,其中涉及到操作种类或分公司名也同样希望是动态根据数据库生成的。
解决方案
解决方案二:
自己扶一把,Help