这对我来说是个谜,我知道我从别人那里得到的代码,在我的情况下,它返回的数据表是空的
conSTR
是连接字符串,设置为全局字符串
public DataTable fillDataTable(string table)
{
string query = "SELECT * FROM dstut.dbo." +table;
SqlConnection sqlConn = new SqlConnection(conSTR);
sqlConn.Open();
SqlCommand cmd = new SqlCommand(query, sqlConn);
DataTable dt = new DataTable();
dt.Load(cmd.ExecuteReader());
sqlConn.Close();
return dt;
}
编辑 1
重点是稍后在 tabcontrol 上的 datagrid 视图中显示此表,这里是关于
在 tabcontrol C# 中显示多个数据表的问题
在这里它只是向我展示了一个空白的datagridview
编辑 2
都试过了,当我尝试显示表格时,datagridview 是空的,有适量的行,但现在值