SqlCommandBuilder.DeriveParameters(SqlCommand) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves parameter information from the stored procedure specified in the SqlCommand and populates the Parameters collection of the specified SqlCommand object.
public:
static void DeriveParameters(System::Data::SqlClient::SqlCommand ^ command);
public static void DeriveParameters (System.Data.SqlClient.SqlCommand command);
static member DeriveParameters : System.Data.SqlClient.SqlCommand -> unit
Public Shared Sub DeriveParameters (command As SqlCommand)
Parameters
- command
- SqlCommand
The SqlCommand referencing the stored procedure from which the parameter information is to be derived. The derived parameters are added to the Parameters collection of the SqlCommand.
Exceptions
The command text is not a valid stored procedure name.
Remarks
DeriveParameters
overwrites any existing parameter information for the SqlDbCommand
.
DeriveParameters
requires an additional call to the database to obtain the information. If the parameter information is known in advance, it is more efficient to populate the parameters collection by setting the information explicitly.
You can only use DeriveParameters
with stored procedures. You cannot use DeriveParameters
with extended stored procedures. You cannot use DeriveParameters
to populate the SqlParameterCollection with arbitrary Transact-SQL statements, such as a parameterized SELECT statement.
For more information, see Configuring Parameters and Parameter Data Types.