| I. | Na początek | |
| II. | Instalacja i konfiguracja | |
| III. | Opis języka | |
| IV. | Bezpieczeństwo | |
| V. | Możliwości | |
| VI. | Opis funkcji | |
| VII. | Zend API | |
| VIII. | PHP API: Interfejs rozszerzeń | |
| X. | Dodatki | |
Copyright © 1997-2006 the PHP Documentation Group
oci_connect() returns a connection identifier needed for most other OCI calls. The optional third parameter can either contain the name of the local Oracle instance or the name of the entry in tnsnames.ora to which you want to connect. If the optional third parameter is not specified, PHP uses the environment variables ORACLE_SID (Oracle instance) or TWO_TASK (tnsnames.ora) to determine which database to connect to.
Notatka: oci_connect() does not reestablish the connection, if a connection with such parameters was established before. In this case, oci_connect() will return identifier of previously opened connection. This means, that you cannot use this function to separate transactions. To establish a distinctly new connection, use oci_new_connect().
Używając serwera Oracle w wersji 9.2 lub nowszej można podać parametr charset, który zostanie użyty przy nowym połączeniu. Używając serwera Oracle < 9.2 ten parametr zostanie zignorowany, a zamiast niego użyta zostanie zmienna środowiskowa NLS_LANG.
oci_connect() returns FALSE if an error occured.
Notatka: In PHP versions before 5.0.0 you must use ocilogon() instead. This name still can be used, it was left as alias of oci_connect() for downwards compatability. This, however, is deprecated and not recommended.
See also oci_pconnect() and oci_new_connect().
| Poprzedni | Spis treści | Następny |
| oci_commit | Początek rozdziału | oci_define_by_name |