asp.net using oracle collection types

E

efinney

Hi,

Does anyone have an example using asp.net with an oracle database
specifically calling stored procedures that return collection types of a
user defined type or simple data type? What driver did you use? What
hurdles did you have to over come?

We are an oracle shop and just started writing .net/asp.net apps. I have
searched the oracle technet site and found lots of sample code for .net
such as getting ref cursors back from a procedure but not collection
types. I think the .net developers are using some third party driver
called "corlab" or something to that affect.

References to sample code or code sites is appreciated.

TIA
Eric
 
F

Frans Bouma [C# MVP]

efinney said:
Hi,

Does anyone have an example using asp.net with an oracle database
specifically calling stored procedures that return collection types of a
user defined type or simple data type? What driver did you use? What
hurdles did you have to over come?

We are an oracle shop and just started writing .net/asp.net apps. I have
searched the oracle technet site and found lots of sample code for .net
such as getting ref cursors back from a procedure but not collection
types. I think the .net developers are using some third party driver
called "corlab" or something to that affect.

UDT's are currently not supported in any .NET driver for Oracle. The
reason for this is that they're often written in Java, and the type
itself isn't usable in .NET.

FB

--
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top