update : 2015.11.03
php.shukuma.com검색:
|
db2_pclose(PECL ibm_db2 >= 1.8.0) db2_pclose — Closes a persistent database connection 설명
bool db2_pclose
( resource
$resource
)This function closes a DB2 client connection created with db2_pconnect() and returns the corresponding resources to the database server.
If you have a persistent DB2 client connection created with db2_pconnect(), you may use this function to close the connection. To avoid substantial connection performance penalties, this function should only be used in rare cases when the persistent connection has become unresponsive or the persistent connection will not be needed for a long period of time. 인수
반환값
성공 시 예제
Example #1 Closing a persistent connection The following example demonstrates a successful attempt to close a connection to an IBM DB2 i5/OS database.
<?php 위 예제의 출력: Connection was successfully closed. 참고
|