tony2001 Tue Mar 21 15:47:31 2006 UTC
Modified files: (Branch: PHP_5_1)
/php-src/ext/oci8 oci8_interface.c
Log:
change oci_field_type() to return VARCHAR2 instead of VARCHAR
(fixes feature request #36800)
http://cvs.php.net/viewcvs.cgi/php-src/ext/oci8/oci8_interface.c?r1=1.8.2.5&r2=1.8.2.6&diff_format=u
Index: php-src/ext/oci8/oci8_interface.c
diff -u php-src/ext/oci8/oci8_interface.c:1.8.2.5
php-src/ext/oci8/oci8_interface.c:1.8.2.6
--- php-src/ext/oci8/oci8_interface.c:1.8.2.5 Tue Jan 31 18:38:52 2006
+++ php-src/ext/oci8/oci8_interface.c Tue Mar 21 15:47:31 2006
@@ -25,7 +25,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: oci8_interface.c,v 1.8.2.5 2006/01/31 18:38:52 tony2001 Exp $ */
+/* $Id: oci8_interface.c,v 1.8.2.6 2006/03/21 15:47:31 tony2001 Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -1191,7 +1191,7 @@
RETVAL_STRING("LONG RAW",1);
break;
case SQLT_CHR:
- RETVAL_STRING("VARCHAR",1);
+ RETVAL_STRING("VARCHAR2",1);
break;
case SQLT_RSET:
RETVAL_STRING("REFCURSOR",1);
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php