You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use UDT's as arguments and return types to procedure calls. Is there a way to use UDT's with node.js?
E.g
select value(t) from vp_customer t where pkey = 123;
The view here returns a custom user defined data type e.g. CUSTOMER created as an object type in oracle.
I am expecting a json object e.g.
{"CustUniqueid": "1234567890", "Name": "Sample", "Address":{"HouseNo":"1234", "ZipCode":"77057"}, "Company": "Node.js"}
The text was updated successfully, but these errors were encountered:
I've run into UDTs many times when trying to connect web applications to our Oracle systems. Marshaling UDTs between application code and Oracle code has been a moderate pain point when we used JVM-based languages as well. It would really help streamline collaboration between "web" development and Oracle development groups if this were dead simple, and I like @milindkhurd's JSON-based example.
For our uses, I'd prioritize this south of #18 (precompiled binary) and #227 (Nan update). I'd put it above things like #243 (SODA support), which might be interesting to experiment with in the future but don't really exist in our current codebase.
We use UDT's as arguments and return types to procedure calls. Is there a way to use UDT's with node.js?
E.g
select value(t) from vp_customer t where pkey = 123;
The view here returns a custom user defined data type e.g. CUSTOMER created as an object type in oracle.
I am expecting a json object e.g.
{"CustUniqueid": "1234567890", "Name": "Sample", "Address":{"HouseNo":"1234", "ZipCode":"77057"}, "Company": "Node.js"}
The text was updated successfully, but these errors were encountered: