Page 1 of 1

Rowtype as Input Parameter

Posted: Tue 20 Jan 2009 12:02
by sabrina.vetter
Hi,

I have a Stored procedure :
procedure MyProc( MyTable table%rowtype );

Is it possible to call it from a C# program, with an OracleParameter ?

Thanx

Posted: Tue 20 Jan 2009 13:26
by Shalex
The %ROWTYPE parameter type is supported neither by Oracle client software nor in our Direct Mode. That's why it is not allowed to have the OracleParameter object that defines a parameter of this type.

Posted: Tue 20 Jan 2009 13:30
by sabrina.vetter
Thank you....