oci_pconnect() creates a new persistent connection to an Oracle server and logs on. The optional third parameter can either contain the name of the local Oracle instance or the name of the entry in tnsnames.ora. If the third parameter is not specified, PHP uses environment variables ORACLE_SID and TWO_TASK to determine the name of local Oracle instance and location of tnsnames.ora accordingly.
Az Oracle 9.2 vagy újabb változat használata eseténlehetőséged van egy charset paraméter megadására is, ami az eztán nyitandó kapcsolatokra lesz érvényes. Ha a 9.2-es változatnál régebbivel dolgozol, a fenti paraméter figyelmen kívül lesz hagyva, helyette az NLS_LANG környezeti változó értéke lesz a mérvadó.
oci_pconnect() returns connection identifier or FALSE on error.
Megjegyzés: Note, that these kind of links only work if you are using a module version of PHP. See the Persistent Database Connections section for more information.
Megjegyzés: In PHP versions before 5.0.0 you must use ociplogon() instead. This name still can be used, it was left as alias of oci_pconnect() for downwards compatability. This, however, is deprecated and not recommended.
See also oci_connect() and oci_new_connect().