I have to call this function from dbExpress components (I think about TSQLStoredProc). But I don't have any idea how can I do this

Other functions that I have to execute return collection. I don't know how to return these collections.
I searched in web and in crlab site and didn't find anything

I give you one example.
Function from package:
--------------------------------------------------------------------------------------------------------------
create or replace package number_utl
is
function get_interval(p_begin number, p_end number) return NUM_INTERVAL_T;
...
end;
--------------------------------------------------------------------------------------------------------------
NUM_INTERVAL_T - is table of an objects that have fields, constructor and functions.
Can I call this function using dbExpress components?
If yes - help me with some information, may be links.
It is very importamt for me.
Thank you.