summaryrefslogtreecommitdiff
path: root/ext/pdo_oci/oci_statement.c
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2008-07-21 17:35:50 +0000
committerPierre Joye <pajoye@php.net>2008-07-21 17:35:50 +0000
commit86a493f43549de38dda15f6f4f4cb649cd57de01 (patch)
tree219031b2633efb42c974a6e8f70894d2d979aaac /ext/pdo_oci/oci_statement.c
parent9d4064afc0c69fbee15b6fb404b38b205e2988cc (diff)
downloadphp-git-86a493f43549de38dda15f6f4f4cb649cd57de01.tar.gz
- SAB: #41996, Problem accessing Oracle ROWID (Martin Jansen)
Diffstat (limited to 'ext/pdo_oci/oci_statement.c')
-rwxr-xr-xext/pdo_oci/oci_statement.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_oci/oci_statement.c b/ext/pdo_oci/oci_statement.c
index 1d2c058615..71913989d4 100755
--- a/ext/pdo_oci/oci_statement.c
+++ b/ext/pdo_oci/oci_statement.c
@@ -557,7 +557,7 @@ static int oci_stmt_describe(pdo_stmt_t *stmt, int colno TSRMLS_DC) /* {{{ */
case SQLT_BIN:
default:
- if (dtype == SQLT_DAT || dtype == SQLT_NUM
+ if (dtype == SQLT_DAT || dtype == SQLT_NUM || dtype == SQLT_RDD
#ifdef SQLT_TIMESTAMP
|| dtype == SQLT_TIMESTAMP
#endif