tony2001 Tue Aug 15 12:19:46 2006 UTC
Modified files: (Branch: PHP_5_2)
/php-src/ext/oci8 oci8.c
Log:
MFH: OCIBreak() is not supported on Windows
http://cvs.php.net/viewvc.cgi/php-src/ext/oci8/oci8.c?r1=1.269.2.16.2.15&r2=1.269.2.16.2.16&diff_format=u
Index: php-src/ext/oci8/oci8.c
diff -u php-src/ext/oci8/oci8.c:1.269.2.16.2.15
php-src/ext/oci8/oci8.c:1.269.2.16.2.16
--- php-src/ext/oci8/oci8.c:1.269.2.16.2.15 Thu Aug 10 12:15:58 2006
+++ php-src/ext/oci8/oci8.c Tue Aug 15 12:19:46 2006
@@ -26,7 +26,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: oci8.c,v 1.269.2.16.2.15 2006/08/10 12:15:58 tony2001 Exp $ */
+/* $Id: oci8.c,v 1.269.2.16.2.16 2006/08/15 12:19:46 tony2001 Exp $ */
/* TODO
*
* file://localhost/www/docs/oci10/ociaahan.htm#423823 - implement lob_empty()
with OCI_ATTR_LOBEMPTY
@@ -653,7 +653,7 @@
php_info_print_table_start();
php_info_print_table_row(2, "OCI8 Support", "enabled");
php_info_print_table_row(2, "Version", "1.2.1");
- php_info_print_table_row(2, "Revision", "$Revision: 1.269.2.16.2.15 $");
+ php_info_print_table_row(2, "Revision", "$Revision: 1.269.2.16.2.16 $");
sprintf(buf, "%ld", OCI_G(num_persistent));
php_info_print_table_row(2, "Active Persistent Connections", buf);
@@ -1755,14 +1755,7 @@
if (connection->used_this_request) {
if ((PG(connection_status) & PHP_CONNECTION_TIMEOUT)) {
- /* call OCIBreak() on timeout to avoid
appearance of deadlocked persistent connections */
- connection->errcode = PHP_OCI_CALL(OCIBreak,
(connection->svc, connection->err));
- if (connection->errcode != OCI_SUCCESS) {
- php_oci_error(connection->err,
connection->errcode TSRMLS_CC);
- PHP_OCI_HANDLE_ERROR(connection,
connection->errcode);
- /* OCIBreak() failed. delete the
connection */
- return 1;
- }
+ return 1;
}
if (connection->descriptors) {
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php