From f9835c3786b8a556e299095de27bc3c79aab467e Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Tue, 21 Mar 2006 15:47:31 +0000 Subject: [PATCH] change oci_field_type() to return VARCHAR2 instead of VARCHAR (fixes feature request #36800) --- ext/oci8/oci8_interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/oci8/oci8_interface.c b/ext/oci8/oci8_interface.c index a6a039f30d..29e1a710db 100644 --- a/ext/oci8/oci8_interface.c +++ b/ext/oci8/oci8_interface.c @@ -1191,7 +1191,7 @@ PHP_FUNCTION(oci_field_type) 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); -- 2.40.0