Edit

Share via


OdbcCommandBuilder.DeriveParameters(OdbcCommand) Method

Definition

Retrieves parameter information from the stored procedure specified in the OdbcCommand and populates the Parameters collection of the specified OdbcCommand object.

public static void DeriveParameters(System.Data.Odbc.OdbcCommand command);

Parameters

command
OdbcCommand

The OdbcCommand referencing the stored procedure from which the parameter information is to be derived. The derived parameters are added to the Parameters collection of the OdbcCommand.

Exceptions

The underlying ODBC driver does not support returning stored procedure parameter information, or the command text is not a valid stored procedure name, or the CommandType specified was not CommandType.StoredProcedure.

Remarks

DeriveParameters overwrites any existing parameter information for the OdbcCommand.

DeriveParameters requires an additional call to the data source 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 to populate the OdbcParameterCollection with arbitrary Transact-SQL statements, such as a parameterized SELECT statement.

Applies to

Product Versions
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)

See also