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.
Loading...
Related Quiz
- When should you use parameterized queries instead of plain SQL statements?
- When using the UPDATE command, you typically specify a ___________ clause to identify the rows to be updated.
- In Entity Framework, the Entity Data Model (EDM) represents the structure of the underlying ___________.
- How does Entity Framework facilitate LINQ queries against the database?
- How can you improve the performance of a LINQ query that involves multiple joins and filtering conditions?