vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi noboday out there ?? Hi everybody i would like to excecute a stored procedure in Oracle from a Progress (Version 8.x) 4GL program like: Example: BEGIN Dbms_Application_Info.Set_Module(module_name => 'add_order', action_name => 'insert into orders'); -- Do insert into ORDERS table. END; Is is possible in Progress 4GL? And how would it be coded (run stored-proce.....???) thx, Fritz |
| ||||
| Fritz Bonhagen <fbonhage@yahoo.com> wrote in news:3F350E5D.5010802@yahoo.com: > Hi noboday out there ?? > > > > > Hi everybody > > i would like to excecute a stored procedure in Oracle > from a Progress (Version 8.x) 4GL program like: > > Example: > > BEGIN > Dbms_Application_Info.Set_Module(module_name => 'add_order', > action_name => 'insert into > orders'); > > -- Do insert into ORDERS table. > END; > > Is is possible in Progress 4GL? > And how would it be coded (run stored-proce.....???) > > > thx, > Fritz > > Look in the Oracle DataServer guide.. The syntax is something like: RUN-STORED-POCEDURE(...) with the name of the stored proc in the parenthesis.. www.progress.com/v9/documentation will show the proper syntax.. Even though it is V9, the syntax for such things does not change between versions.. Kevin |