Hi I am trying to get information on an Oracle package directly from PHP using OCI8:
$sql = DESC my_package ; $stmt = oci_parse($conn, $sql); oci_execute($stmt);
this returns:
Warning: oci_execute() [function.oci-execute]: ORA-00900: invalid SQL statement in /oci8_test.php on line 16
I know the command works as I tried it in SQLPlus.
Does anyone know how to achieve this.
Thx