OracleCommandBuilder.DeriveParameters Method
Retrieves parameter information from the stored procedure specified in the OracleCommand and populates the Parameters collection of the specified OracleCommand object.
[Visual Basic] Public Shared Sub DeriveParameters( _ ByVal command As OracleCommand _ ) [C#] public static void DeriveParameters( OracleCommand command ); [C++] public: static void DeriveParameters( OracleCommand* command ); [JScript] public static function DeriveParameters( command : OracleCommand );
Parameters
- command
- The OracleCommand referencing the stored procedure from which the parameter information is to be derived. The derived parameters are added to the Parameters collection of the OracleCommand.
Exceptions
| Exception Type | Condition |
|---|---|
| InvalidOperationException | 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 OracleCommand.
DeriveParameters requires an extra 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 to populate the OracleParameterCollection with arbitrary Transact-SQL statements, such as a parameterized SELECT statement.
For more information, see Using Stored Procedures with a Command.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
.NET Framework Security:
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries From Partially Trusted Code
See Also
OracleCommandBuilder Class | OracleCommandBuilder Members | System.Data.OracleClient Namespace