madhavi wrote:
ernst_pluess wrote:
may be the cusomt SQL feature helps
HTH
Ernst
I've seen the code something like this...
<sql-insert callable="true">{call createPatient (?, ?, ?, ?)}</sql-insert>
which are custom sql statements...is there any other way for calling stored proce...vth the above syntax we can only insert/update/delete..but I've a SP which retrieves data...how can i do that? plz help...
Hi Madhavi,
You can do one thing,
create a temporary table (using sql statement) which holds the columns returned by the SP.and call SP
for eg
create table temp column ....
insert into temp execute your SP
then when you call this you will be getting a List of that temp table instances