What is a database transaction in the context of ADO.NET?

  • A database connection
  • A database operation
  • A database query
  • A unit of work performed on a database
A database transaction in the context of ADO.NET refers to a unit of work performed on a database that is treated as a single operation. It either completes entirely or fails entirely, ensuring data integrity. Transactions are crucial for maintaining consistency and reliability in database operations.
Add your answer
Loading...

Leave a comment

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