When using the SqlDataAdapter to fill a dataset, what SQL statement is typically provided to retrieve data?

  • DELETE statement
  • INSERT statement
  • SELECT statement
  • UPDATE statement
When using the SqlDataAdapter to fill a dataset, a SELECT statement is typically provided to retrieve data from a data source. This statement specifies the columns and rows to be returned, allowing the SqlDataAdapter to populate the dataset with the retrieved data.
Add your answer
Loading...

Leave a comment

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