--TEST-- Test error handling when persistent connection is passed to oci_error() --SKIPIF-- --FILE-- --EXPECTF-- Normal connection: Parse error array(4) { ["code"]=> int(1756) ["message"]=> string(48) "ORA-01756: %s" ["offset"]=> int(0) ["sqltext"]=> string(0) "" } New connection: Parse error array(4) { ["code"]=> int(1756) ["message"]=> string(48) "ORA-01756: %s" ["offset"]=> int(0) ["sqltext"]=> string(0) "" } Persistent connection: Parse error array(4) { ["code"]=> int(1756) ["message"]=> string(48) "ORA-01756: %s" ["offset"]=> int(0) ["sqltext"]=> string(0) "" } No connection: error: bool(false) Normal connection (take #2): Parse error: ORA-01756: %s New connection (take #2): Parse error: ORA-01756: %s Persistent connection (take #2): Parse error: ORA-01756: %s Normal connection: New Collection error: OCI-22303: type ""."ABC" not found New connection (take #3): Parse error: ORA-01756: %s Persistent connection (take #3): Parse error: ORA-01756: %s Done