In ADO.NET, the DataAdapter uses a combination of ___________ to perform its operations.
- Commands and Connections
- DataReaders
- DataSets and DataTables
- Transactions
In ADO.NET, the DataAdapter uses Commands and Connections to perform its operations. The DataAdapter acts as a bridge between the database and the DataSet, executing SQL commands specified in the SelectCommand, InsertCommand, UpdateCommand, and DeleteCommand properties.
Loading...
Related Quiz
- The IsolationLevel enumeration in ADO.NET provides options such as ReadCommitted and ___________.
- Scenario: In a Windows Forms application, you have a requirement to allow users to select multiple items from a ListBox control. How would you implement this feature?
- Which Entity Framework feature allows you to define the structure of your database in code?
- What is the key difference between a SqlDataReader and an OracleDataReader?
- What is the purpose of the INotifyPropertyChanged interface in data binding?