Retrieves parameter information from the stored procedure specified in the SqlCommand and populates the Parameters collection of the specified SqlCommand object.
Namespace:
System.Data.SqlClient
Assembly:
System.Data (in System.Data.dll)
Visual Basic (Declaration)
Public Shared Sub DeriveParameters ( _
command As SqlCommand _
)
Dim command As SqlCommand
SqlCommandBuilder.DeriveParameters(command)
public static void DeriveParameters(
SqlCommand command
)
public:
static void DeriveParameters(
SqlCommand^ command
)
public static function DeriveParameters(
command : SqlCommand
)
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 (ADO.NET).
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
.NET Compact Framework
Supported in: 3.5, 2.0, 1.0
Reference
Other Resources