mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
change oci_field_type() to return VARCHAR2 instead of VARCHAR
(fixes feature request #36800)
This commit is contained in:
parent
7f18e7f62c
commit
dce1fffbc8
1 changed files with 1 additions and 1 deletions
|
@ -1187,7 +1187,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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue