> create dbproc prog_one (IN input char(50), OUT outstr char(50)) AS
>    SET outstr = REPLACE (input, '�', 'Ae') outstr ;
> 
> But now, my question is, how could I get the outstr ?

- use a CallableStatement
- setString for parameter 1
- execute
- getString for parameter 2

Daniel Dittmar

-- 
Daniel Dittmar
SAP DB, SAP Labs Berlin
[EMAIL PROTECTED]
http://www.sapdb.org/
_______________________________________________
sapdb.general mailing list
[EMAIL PROTECTED]
http://listserv.sap.com/mailman/listinfo/sapdb.general

Reply via email to