绑定后,中数据源的值未显示在网格视图中

本文关键字:显示 网格 视图 数据源 绑定 | 更新日期: 2023-09-27 18:26:44

以下代码在form_load事件中将AutoGenerateColumns设置为true:

gvTables.AutoGenerateColumns = true;

以下是绑定gridview gvTables:的代码

Query ="select name from sys.tables";  
DataSet tablesDataSet = new DataSet("TableData");
OleDbDataAdapter tablesDataAdaptor = new OleDbDataAdapter(Query, this.Connection);
tablesDataAdaptor.Fill(tablesDataSet);
gvTables.DataSource = tablesDataSet;

《守则》运行良好。即使数据已检索到dataset tableDataSet中,但该值未显示到gridview控件中。

绑定后,中数据源的值未显示在网格视图中

我得到了这个问题的解决方案。解决方案以有序的方式发布在下面:

1) class中新变量的声明如下:

private DataSet _Records = null;    

2) 设置新变量的property

public DataSet Records
{ get { return this._Records; } set { this._Records = value; } }

2) 以下是点击事件中的代码:

Query ="select name from sys.tables";  
GetDataSetForQuery(Query);//Set the data set using GetDataSetForQuery(Query) method
BindingSource bs = new BindingSource();
bs.Datasource = this.Records.Tables[0] ;
gvTables.Datasource = bs;

4) 以下是GetDataSetForQuery(string sqlQuery)方法的代码:

    private bool GetDataSetForQuery(string sqlQuery)
    {
        try
        {
            DataSet ds = new DataSet();
            OleDbDataAdapter da = new OleDbDataAdapter(sqlQuery, this.Connection);
            da.Fill(ds);
            this.Records = ds;
            return true;
        }
        catch (Exception ex)
        {
            return false;
        }
        finally { }
    }

在代码之后调用以下函数。

gvTables.SetDataBinding(tablesDataSet , "Data");