ADO.NET provides the _________ class to work with stored procedures, which allows for flexible parameter handling.

  • SqlCommand
  • SqlConnection
  • SqlDataAdapter
  • SqlParameter
The SqlParameter class in ADO.NET is used to define parameters for stored procedures. It allows developers to specify various properties for each parameter, including its name, data type, size, and direction (input or output). This class facilitates flexible parameter handling and ensures proper interaction with stored procedures.
Add your answer
Loading...

Leave a comment

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