The SqlCommand.Parameters collection allows you to define and manage ___________ for your parameterized queries.

  • data types
  • database connections
  • query parameters
  • stored procedures
The SqlCommand.Parameters collection in ADO.NET allows developers to define and manage query parameters for parameterized SQL queries. This helps prevent SQL injection attacks by separating SQL code from user input data.
Add your answer
Loading...

Leave a comment

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