Hi,
I want to call a Pl/Sql function from Php ( I'm using oci8 functions). If the Pl/Sql function returns with VarChar2, number etc. it works perfectly. However when I use the following record for return it doesn't work: Type T_CegTabla IS TABLE OF VarChar2(80) INDEX BY BINARY_INTEGER; Type T_CimTabla IS TABLE OF VarChar2(110) INDEX BY BINARY_INTEGER; TYPE T_CegLista_REK IS RECORD ( Cegnev T_CegTabla , Cim T_CimTabla ); Function DoSomething (KeresoStr Varchar2,MinRow Integer, MaxRow Integer) Return T_CegLista_REK ; Is there a way in Php to workaround this? I noticed that there isn't record structure in Php. Thank you in advance Zsolt Csillag, Hungary -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php