update : 2015.11.03
php.shukuma.com검색:
|
oci_new_connect(PHP 5, PECL OCI8 >= 1.1.0) oci_new_connect — Connect to the Oracle server using a unique connection 설명
resource oci_new_connect
( string
$username
, string $password
[, string $connection_string
[, string $character_set
[, int $session_mode
]]] )Establishes a new connection to an Oracle server and logs on. Unlike oci_connect() and oci_pconnect(), oci_new_connect() does not cache connections and will always return a brand-new freshly opened connection handle. This is useful if your application needs transactional isolation between two sets of queries. 인수
반환값
Returns a connection identifier or 예제The following demonstrates how you can separate connections. Example #1 oci_new_connect() example
<?php See oci_connect() for further examples of parameter usage. 참고
|