Hi,
following the example in conf.php.net/oci with declaring the typ
outside a package is runs!
trying in php
$arr = OCINewCollection($conn,"TEST.ARR_CHAR");
only brings:
Warning: OCITypeByName: OCI-22303: type ""."TEST_OLE.ARR_CHAR" not found
but the type ARR_CHRR declared in the package
<cut>
CREATE OR REPLACE PACKAGE TEST IS
TYPE ARR_CHAR IS VARRAY(100) OF VARCHAR2(100);
PROCEDURE xxx(p_xxx in ARR_CHAR);
END TEST;
/
CREATE OR REPLACE PACKAGE BODY TEST AS
PROCEDURE xxx(p_xxx in ARR_CHAR) IS
BEGIN
...
</cut>
any ideas?
thanks!
Olaf
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]