Tagged Questions
5
votes
4answers
5k views
How do you return a user defined type from a WCF service?
I have a WCF service hosted in IIS. The intention is for clients to make a call and receive a custom class that is defined in another project/dll. I have generated a service client using the ...
1
vote
1answer
867 views
Classic ADO.NET - How to Pass UDT To Stored Procedure?
I have this SQL Server 2008 UDT:
CREATE TYPE [dbo].[IdentityType] AS TABLE(
[Id] [int] NOT NULL
)
Pretty simple. Basically allows me to hold onto a list of id's.
I have this stored procedure:
...
0
votes
2answers
492 views
Oracle UDF problem - object passes to stored procedure but does insert NVARCHAR2,no insert for DECIMAL
We have a table as:
CREATE TABLE ESIPARIS.T_ORDER_LINE
(
NO NUMBER(18),
ORDER_NO NUMBER(18),
ITEM_NO NVARCHAR2(15),
AMOUNT NUMBER(18,3),
INSERT_DATE DATE,
...
0
votes
1answer
2k views
How do I map from Oracle UDTs with ODP.NET without using OracleObjectMappingAttribute?
The data access layer in our application is going to be using the UDT functionality of Oracle. We will only be passing UDT objects to and from the database.
At the moment, we generate the custom ...