Submitted Questions

  • Data Table in ADO.NET

    What is Data table in .net and how it is different from table in database (sqlserver)

    nikhiljain27

    • Jul 13th, 2013

    Datatable is one table collection of Rows and columns in ADO.Net. It is a member of the System.Data namespace in the .NET Framework. DataSet is also a combination of multiple DataTable. It works in Disconnected environment. You can Add/ update/ delete records in the Datatable at runtime.

    Trapti

    • Sep 14th, 2011

    The DataTable class is a member of the System.Data namespace within the .NET Framework class library. You can create and use a DataTable independently or as a member of a DataSet, and DataTable object...