Skip to Main Content

ODP.NET

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

using record and table type variables in ODP.Net

PleiadianOct 17 2014 — edited Nov 6 2014

Hi,

I am a reasonably experienced pl/sql developer, but very new to odp.net.

We want to use odp.net to create soap/rest services for several existing oracle functions.

Some of these functions return record types or tables of record types, e.g.:

type my_result_rec is record(

  val1 number,

  val2 number );

type my_result_tab is table of my_result_rec;

function my_function(

  param1 in number,

  param2 in number

) return my_result_tab;

Is it possible to use these kind of functions in odp.net? What is the preferred way of interacting with custom data types?

Thank you very much in advance!

Rob

This post has been answered by Pleiadian on Nov 6 2014
Jump to Answer

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Dec 4 2014
Added on Oct 17 2014
3 comments
3,865 views