Hi All,
Iam new to PHP development and would like to know how PHP support the oracle record types. I have PLSQL stored procedures written having parameters of the following types.
create or replace type rectype as object(col1 varchar(10),col2 varchar(10));
create or replace type rectab as table of rectype;
and rectab is used as the in out variable for the stored procedure.
Iam unable to find the corresponding PHP variable types to support this. Also in other procedures I have PL/SQL tables as out parameters.
I fear the worst that PHP does not directly support the above mentioned oracle datatypes. If it is so can u guide me to the most
efficient way of wrapping the data held in these datatypes into a datamodel that PHP supports ??. Rewriting the oracle procedures is not a option given. I can only write interface procedures to wrap these data into containers that PHP can understand.
Thanks for your time.