Hi,
How can i use a user-defined type in ECPG code ?
For example:
I have the following stored-procedure:CREATE FUNCTION teste(MY_TYPE) RETURNS boolean;
where MY_TYPE is:CREATE TYPE MY_TYPE AS (id_person INT8, id_book INT8);
Now, i am having problem with:
EXEC SQL SELECT teste(:asd);
-- Andre <yoshiaki@linux.ime.usp.br>