| Author |
How to understand which datatype is being output from a stored procedure
|
Shantanu Deshmukh
Greenhorn
Joined: Jul 28, 2011
Posts: 23
|
|
Hello,
I am trying to write a function which takes stored procedure's name and it's arguments as argument and execute it.
Now I want that, the function should be able to know wat data is being output from the sp, so I can set datatype of output variable of sp.
How to do this ?
|
There are no failures, only experiences
|
 |
Fatih Keles
Ranch Hand
Joined: Sep 01, 2005
Posts: 182
|
|
Hi Shantanu,
I guess you have to look up for your procedure in database metadata and learn about it in details. But there are many things to be considered like how many and what types of arguments does the procedure have? How to handle CLOB, BLOB and raw types? What about UDTs?
You are on a dark path, good luck with that
I am sure some other rancher will give a hand.
Regards,
Fatih.
|
 |
 |
|
|
subject: How to understand which datatype is being output from a stored procedure
|
|
|