anumolu rambabu
How to put two DataSets in single DataSet?
By anumolu rambabu in ADO.NET on Oct 29 2007
  • shabbir anjum
    Jun, 2008 18

    Specifies how to read XML data and a relational schema into a DataSet.

    • 0
  • shabbir anjum
    Jun, 2008 18

    Using Merge Method , you can do as

    DataTable dt = new DataTable("Table");

    dt.Columns.Add("Clm");

    DataSet ds = new DataSet();

    ds.Tables.Add(dt);

    dt = new DataTable("Table1");

    dt.Columns.Add("Clm1");

    DataSet ds1 = new DataSet();

    ds1.Tables.Add(dt);

    ds1.Merge(ds);

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS