如何使用在 wso2 应用程序中创建的数据服务编写查询以调用具有 in 和 out 参数的存储过程。
我正在使用这个查询:call wso2proc(:e_id,:e_name,?)
和存储过程如下..
create or replace PROCEDURE WSO2PROC ( e_id IN emp20.id% TYPE , e_name IN emp20.name% TYPE , e_address OUT emp20.address% TYPE ) IS
BEGIN
select address INTO e_address from emp20 e where e.id=e_id and e.name=e_name;
END WSO2PROC;
请建议在 wso2 应用程序服务器中创建数据服务时如何编写查询,以便返回 out 参数。