sqlHelper = new SqlHelper();
sqlHelper.OpenConnection();
int i;
String sqlSt = string.Empty;
for (i = 0; i < tag.Count; i++)
{
sqlSt = "Select TagID from TagsList where TagName= '" + tag[i] + "'";
ds = sqlHelper.ExecuteDataSet(sqlSt, CommandType.Text);
if (ds != null)
{
if (ds.Tables[0].Rows.Count > 0)
{
//dt = ds1.Tables[0];
ds.Tables[0].Rows.Add(ds);
}
}
}
return ds;
我想将一个数据集添加到另一个数据集,最后将返回累积的数据集。
我收到一个错误 -Unable to cast object of type 'System.Data.DataSet' to type 'System.IConvertible'.Couldn't store <System.Data.DataSet>
编辑:我想要的是我得到一个包含特定 int 值的数据集,我的 for 循环运行的每种类型我想将所有这些记录添加到数据集中,然后返回我的数据集