diff options
author | Antony Dovgal <tony2001@php.net> | 2006-01-31 18:38:52 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-01-31 18:38:52 +0000 |
commit | 3a800fe146fd03f1029c2936e2d5a32f816f3bbd (patch) | |
tree | 4face84e6376befe5375eea6a189131f3d46fed8 /ext/oci8/php_oci8_int.h | |
parent | eb91dfc69e28cc9fcaff0f5179269a69349197e6 (diff) | |
download | php-git-3a800fe146fd03f1029c2936e2d5a32f816f3bbd.tar.gz |
MFH: fix #36235 (ocicolumnname delivers empty results before a succesfull ocifetch)
Diffstat (limited to 'ext/oci8/php_oci8_int.h')
-rw-r--r-- | ext/oci8/php_oci8_int.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/oci8/php_oci8_int.h b/ext/oci8/php_oci8_int.h index cf41cbd621..0553bc70b9 100644 --- a/ext/oci8/php_oci8_int.h +++ b/ext/oci8/php_oci8_int.h @@ -358,7 +358,7 @@ int php_oci_bind_post_exec(void *data TSRMLS_DC); int php_oci_bind_by_name(php_oci_statement *, char *, int, zval*, long, long TSRMLS_DC); sb4 php_oci_bind_in_callback(dvoid *, OCIBind *, ub4, ub4, dvoid **, ub4 *, ub1 *, dvoid **); sb4 php_oci_bind_out_callback(dvoid *, OCIBind *, ub4, ub4, dvoid **, ub4 **, ub1 *, dvoid **, ub2 **); -php_oci_out_column *php_oci_statement_get_column_helper(INTERNAL_FUNCTION_PARAMETERS); +php_oci_out_column *php_oci_statement_get_column_helper(INTERNAL_FUNCTION_PARAMETERS, int need_data); int php_oci_statement_get_type(php_oci_statement *, ub2 * TSRMLS_DC); int php_oci_statement_get_numrows(php_oci_statement *, ub4 * TSRMLS_DC); |