我有 5 张桌子,每张桌子有 4 行。所以我需要获取所有行,并且行中的每个元素都应该显示在表格中。
但问题是我在一个存储过程中编写了五个表的所有选择语句。那么如何找回它们呢?
我有 5 张桌子,每张桌子有 4 行。所以我需要获取所有行,并且行中的每个元素都应该显示在表格中。
但问题是我在一个存储过程中编写了五个表的所有选择语句。那么如何找回它们呢?
您可以在数据集中检索它们并通过 dataset.tables["TableName or Index"] 访问每个表
例子:
// SqlCommand cmd=new SqlCommand("ProcedureName","Connection");
// cmd.CommandType = CommandType.StoredProcedure;
// SqlDataAdapter da=new SqlDataAdapter(cmd);
// Dataset ds=new Dataset();
// da.Fill(ds);
// Now after Filling the Dataset you can Retrieve it by
dataset.tables["TableName or Index"]