tony2001 Mon Feb 2 03:26:17 2004 EDT
Modified files:
/php-src/ext/oci8 oci8.c
Log:
add missing alias for ocifreecursor()
http://cvs.php.net/diff.php/php-src/ext/oci8/oci8.c?r1=1.245&r2=1.246&ty=u
Index: php-src/ext/oci8/oci8.c
diff -u php-src/ext/oci8/oci8.c:1.245 php-src/ext/oci8/oci8.c:1.246
--- php-src/ext/oci8/oci8.c:1.245 Mon Feb 2 03:09:53 2004
+++ php-src/ext/oci8/oci8.c Mon Feb 2 03:26:15 2004
@@ -22,7 +22,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: oci8.c,v 1.245 2004/02/02 08:09:53 tony2001 Exp $ */
+/* $Id: oci8.c,v 1.246 2004/02/02 08:26:15 tony2001 Exp $ */
/* TODO list:
*
@@ -442,7 +442,8 @@
PHP_FE(oci_collection_trim, NULL)
PHP_FE(oci_new_collection, NULL)
#endif
-
+
+ PHP_FALIAS(oci_free_cursor, oci_free_statement, NULL)
PHP_FALIAS(ocifreecursor, oci_free_statement, NULL)
PHP_FALIAS(ocibindbyname, oci_bind_by_name, third_arg_force_ref)
PHP_FALIAS(ocidefinebyname, oci_define_by_name, third_arg_force_ref)
@@ -785,7 +786,7 @@
php_info_print_table_start();
php_info_print_table_row(2, "OCI8 Support", "enabled");
- php_info_print_table_row(2, "Revision", "$Revision: 1.245 $");
+ php_info_print_table_row(2, "Revision", "$Revision: 1.246 $");
sprintf(buf, "%ld", num_persistent);
php_info_print_table_row(2, "Active Persistent Links", buf);
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php