Tools
Sign in
Login
Forum
Calling an Oracle Store Procedure
Forum
>
Integration & Database
>
Calling an Oracle Store Procedure
n/A
posted
on December 22, 2014
at 5:30 PM
Version
5.1.1.r
n/A
posted
on December 22, 2014
at 5:30 PM
Version
5.1.1.r
Hi,
I have defined on Oracle the next store procedure:
create or replace
PROCEDURE GetRelation
(
NumRelation IN VARCHAR2,
DesRelation OUT VARCHAR2
)
AS
BEGIN
SELECT des_port
into DesRelation
from po_portafoglio
WHERE cod_port = NumRelation;
END;
How can I call from appway this procedure?
Thomas Suter
replied
on December 31, 2014
at 2:19 PM
Thomas Suter
replied
on December 31, 2014
at 2:19 PM
see comments added to this recipe:
https://developer.appway.com/screen/ShowSingleRecipe/selectedRecipeId/1355274972484
Please
sign in
to add a reply
About this site
|
Terms of use
|
Privacy statement
|
Contact us
© 2025 Appway AG. All Rights Reserved.
I have defined on Oracle the next store procedure:
create or replace
PROCEDURE GetRelation
(
NumRelation IN VARCHAR2,
DesRelation OUT VARCHAR2
)
AS
BEGIN
SELECT des_port
into DesRelation
from po_portafoglio
WHERE cod_port = NumRelation;
END;
How can I call from appway this procedure?