tony2001                Tue Mar 21 15:47:38 2006 UTC

  Modified files:              
    /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.13&r2=1.14&diff_format=u
Index: php-src/ext/oci8/oci8_interface.c
diff -u php-src/ext/oci8/oci8_interface.c:1.13 
php-src/ext/oci8/oci8_interface.c:1.14
--- php-src/ext/oci8/oci8_interface.c:1.13      Sun Feb 19 04:29:41 2006
+++ php-src/ext/oci8/oci8_interface.c   Tue Mar 21 15:47:38 2006
@@ -25,7 +25,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: oci8_interface.c,v 1.13 2006/02/19 04:29:41 andi Exp $ */
+/* $Id: oci8_interface.c,v 1.14 2006/03/21 15:47:38 tony2001 Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -1187,7 +1187,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

Reply via email to