Discussions
Categories
- 385.5K All Categories
- 4.9K Data
- 2.5K Big Data Appliance
- 2.4K Data Science
- 453.4K Databases
- 223.2K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 47 Multilingual Engine
- 606 MySQL Community Space
- 486 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3.2K ORDS, SODA & JSON in the Database
- 585 SQLcl
- 4K SQL Developer Data Modeler
- 188K SQL & PL/SQL
- 21.5K SQL Developer
- 46 Data Integration
- 46 GoldenGate
- 298.4K Development
- 4 Application Development
- 20 Developer Projects
- 166 Programming Languages
- 295K Development Tools
- 150 DevOps
- 3.1K QA/Testing
- 646.7K Java
- 37 Java Learning Subscription
- 37.1K Database Connectivity
- 201 Java Community Process
- 108 Java 25
- 22.2K Java APIs
- 138.3K Java Development Tools
- 165.4K Java EE (Java Enterprise Edition)
- 22 Java Essentials
- 176 Java 8 Questions
- 86K Java Programming
- 82 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 208 Java User Groups
- 25 JavaScript - Nashorn
- Programs
- 667 LiveLabs
- 41 Workshops
- 10.3K Software
- 6.7K Berkeley DB Family
- 3.6K JHeadstart
- 6K Other Languages
- 2.3K Chinese
- 207 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 474 Portuguese
UDTs and .net custom types are not supported in Oracle managed driver

Hi Team,
I have upgraded to Oracle managed driver(Oracle.ManagedDataAccess.Client) for my .net applicaton but here I see the UDT and .net custom type is not supported . Could you please let us know the alternative for it ?
We have procedures which accepts the record type as input parameter and I am unable to find the custom types for it.
Thanks
Sukanta
Answers
-
Managed ODP.NET 21.3 supports UDTs and .NET custom types. You can download this version from NuGet.
-
Hello,
Thanks for the solution. There are so many dependencies need to be installed with Oracle.ManagedDataAccess 21.3.0 .
System.Text.Json (>= 5.0.2)
and to install System.Text.Json need to install below dependencies:
- Microsoft.Bcl.AsyncInterfaces (>= 5.0.0)
- System.Buffers (>= 4.5.1)
- System.Memory (>= 4.5.4)
- System.Numerics.Vectors (>= 4.5.0)
- System.Runtime.CompilerServices.Unsafe (>= 5.0.0)
- System.Text.Encodings.Web (>= 5.0.1)
- System.Threading.Tasks.Extensions (>= 4.5.4)
- System.ValueTuple (>= 4.5.0)
and many more.
-
.NET (Core) is much more modular than .NET FW. That's good for customizing the runtime and reducing deployment size.
The design also means when a piece of functionality exists in another dependency, which itself can have dependencies, all those libraries have to be included.
System.Text.Json is needed to process JSON data types. ODP.NET 21c has added the ability to use binary JSON and further capabilities to manipulate JSON, which is what necessitated the requirement.