yajra / pdo-via-oci8

PHP PDO_OCI functions via OCI8 extension
Other
88 stars 61 forks source link

How to call Procedures with cursor??? #76

Open mnhai-webdev opened 4 years ago

mnhai-webdev commented 4 years ago

Summary of problem or feature request

My code:

create or replace PROCEDURE GET_USERS_LIST ( C_USERS OUT SYS_REFCURSOR ) IS BEGIN OPEN C_USERS FOR SELECT * FROM USERS; END GET_USERS_LIST;

I can not call Procedure and encountered an error. I need some help, plz. :(

Code snippet of problem

System details