1
0
mirror of https://github.com/php/php-src.git synced 2026-04-02 13:43:02 +02:00
This commit is contained in:
Antony Dovgal
2006-11-10 21:55:05 +00:00
parent 80507d62ea
commit 869aa78e1e
2 changed files with 2 additions and 2 deletions

View File

@@ -124,7 +124,7 @@ php_oci_statement *php_oci_statement_create (php_oci_connection *connection, zst
/* {{{ php_oci_statement_set_prefetch()
Set prefetch buffer size for the statement (we're assuming that one row is ~1K sized) */
int php_oci_statement_set_prefetch(php_oci_statement *statement, ub4 size TSRMLS_DC)
int php_oci_statement_set_prefetch(php_oci_statement *statement, long size TSRMLS_DC)
{
ub4 prefetch = size * 1024;

View File

@@ -382,7 +382,7 @@ int php_oci_collection_append_string(php_oci_collection *, zstr, int TSRMLS_DC);
/* statement related prototypes {{{ */
php_oci_statement * php_oci_statement_create (php_oci_connection *, zstr, int, zend_uchar TSRMLS_DC);
int php_oci_statement_set_prefetch (php_oci_statement *, ub4 TSRMLS_DC);
int php_oci_statement_set_prefetch (php_oci_statement *, long TSRMLS_DC);
int php_oci_statement_fetch (php_oci_statement *, ub4 TSRMLS_DC);
php_oci_out_column * php_oci_statement_get_column (php_oci_statement *, long, zstr, int TSRMLS_DC);
int php_oci_statement_execute (php_oci_statement *, ub4 TSRMLS_DC);