Rowtype as Input Parameter

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for Oracle
Post Reply
sabrina.vetter
Posts: 4
Joined: Fri 27 Oct 2006 11:06

Rowtype as Input Parameter

Post by sabrina.vetter » Tue 20 Jan 2009 12:02

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

Shalex
Site Admin
Posts: 9543
Joined: Thu 14 Aug 2008 12:44

Post by Shalex » Tue 20 Jan 2009 13:26

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.

sabrina.vetter
Posts: 4
Joined: Fri 27 Oct 2006 11:06

Post by sabrina.vetter » Tue 20 Jan 2009 13:30

Thank you....

Post Reply