Which ADO.NET class represents a single table of in-memory data?

  • DataTable
  • SqlCommand
  • SqlConnection
  • SqlDataAdapter
The DataTable class in ADO.NET represents a single table of in-memory data. It provides methods and properties to manipulate and interact with the data stored in the table, such as adding rows, deleting rows, or performing queries. It is commonly used for data manipulation and caching within applications.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *