This topic is locked

Displaying/Using Data Returned from a Stored Proceedure

3/29/2018 2:58:18 PM
PHPRunner General questions
J
John author

Is there an example of how to use data that is returned from a stored procedure? The example provided @ https://xlinesoft.com/phprunner/docs/how_to_display_data_returned_by_sp.htm show part of the process but doesn't show how to actual use the data returned..

Thanks in advance

John

Sergey Kornilov admin 3/29/2018

If you implement all steps from that article the data returned by stored procedure will be displayed on the List page the same way the data from regular table is displayed, assuming that your stored procedure returns a set of records. If your stored procedure only returns a single value you can add a code snippet somewhere, run the stored procedure and display that value using echo command.