MySqlCommandBuilder.DeriveParameters Method

MySQL Connector/Net

MySqlCommandBuilderDeriveParameters Method
Retrieves parameter information from the stored procedure specified in the MySqlCommand and populates the Parameters collection of the specified MySqlCommand object. This method is not currently supported since stored procedures are not available in MySql.

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
public static void DeriveParameters(
	MySqlCommand command
)
Public Shared Sub DeriveParameters ( 
	command As MySqlCommand
)
public:
static void DeriveParameters(
	MySqlCommand^ command
)
static member DeriveParameters : 
        command : MySqlCommand -> unit 

Parameters

command
Type: MySql.Data.MySqlClientMySqlCommand
The MySqlCommand referencing the stored procedure from which the parameter information is to be derived. The derived parameters are added to the Parameters collection of the MySqlCommand.
Exceptions
ExceptionCondition
InvalidOperationExceptionThe command text is not a valid stored procedure name.
See Also