The ExecuteNonQuery method of a command object is typically used for executing _______ SQL commands.

  • Insert
  • Non-Query
  • Select
  • Update
The ExecuteNonQuery method is used to execute SQL commands that do not return data, such as INSERT, UPDATE, DELETE, or any SQL command that does not return a result set. It is commonly used for executing data manipulation language (DML) statements.
Add your answer
Loading...

Leave a comment

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