从 SqlDataAdapter 扩展数据集类填充

本文关键字:填充 数据集 扩展 SqlDataAdapter | 更新日期: 2023-09-27 18:35:41

class InspectionEquip : DataSet
{
    private readonly SqlConnection CPEC = new SqlConnection(ConfigurationManager.ConnectionStrings["ConnectionString"].ToString());
    public InspectionEquip(string store)
    {
        CPEC.Open();
        SqlCommand comm = new SqlCommand("Select * From Equip3 Where Store = '" + store + "'", CPEC);
        SqlDataAdapter da = new SqlDataAdapter(comm);
        da.Fill(/* What to Put Here? Tried "this" and it just returns blank */);    
        CPEC.Close();
    }
}

从 SqlDataAdapter 扩展数据集类填充

您的 SQL 查询有问题(没有匹配的数据,参数错误)。 da.Fill(this)工作正常。

如果你想要证据 - 把这SqlCommand线换成你的......

SqlCommand comm = new SqlCommand("select * from INFORMATION_SCHEMA.COLUMNS", CPEC);

您可能还应该扩展DataTable,而不是DataSet如果您只计划存储单个表结果。