diff options
author | Thies C. Arntzen <thies@php.net> | 2001-03-02 09:12:55 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 2001-03-02 09:12:55 +0000 |
commit | 1b7eaa76c40500816d811cab511e807e912b4835 (patch) | |
tree | 54af826f5217ed5059fe329b3d7bd27600506a8a /ext/oci8 | |
parent | 6fcde257f3d30a78aa84e644c43900894079a605 (diff) | |
download | php-git-1b7eaa76c40500816d811cab511e807e912b4835.tar.gz |
@- Fixed binding of ROWIDs in OCI8. (Thies)
Diffstat (limited to 'ext/oci8')
-rw-r--r-- | ext/oci8/oci8.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c index cff8178e3a..0d6b57e3ae 100644 --- a/ext/oci8/oci8.c +++ b/ext/oci8/oci8.c @@ -2494,6 +2494,7 @@ PHP_FUNCTION(ocibindbyname) case SQLT_CFILEE: case SQLT_CLOB: case SQLT_BLOB: + case SQLT_RDD: if ((*var)->type != IS_OBJECT) { php_error(E_WARNING,"Variable must be allocated using OCINewDescriptor()"); RETURN_FALSE; |