Searched refs:prefetch (Results 1 - 2 of 2) sorted by relevance
| /PHP_5_4/ext/oci8/ |
| H A D | oci8_statement.c | 113 Set prefetch buffer size for the statement (we're assuming that one row is ~1K sized) */ 116 ub4 prefetch = size; local 123 PHP_OCI_CALL_RETURN(statement->errcode, OCIAttrSet, (statement->stmt, OCI_HTYPE_STMT, &prefetch, 0, OCI_ATTR_PREFETCH_ROWS, statement->err));
|
| /PHP_5_4/ext/pdo_oci/ |
| H A D | oci_driver.c | 34 static inline ub4 pdo_oci_sanitize_prefetch(long prefetch); 255 ub4 prefetch; local 305 prefetch = pdo_oci_sanitize_prefetch(pdo_attr_lval(driver_options, PDO_ATTR_PREFETCH, PDO_OCI_PREFETCH_DEFAULT TSRMLS_CC)); 306 if (prefetch) { 307 H->last_err = OCIAttrSet(S->stmt, OCI_HTYPE_STMT, &prefetch, 0, 310 prefetch *= PDO_OCI_PREFETCH_ROWSIZE; 311 H->last_err = OCIAttrSet(S->stmt, OCI_HTYPE_STMT, &prefetch, 0, 721 static inline ub4 pdo_oci_sanitize_prefetch(long prefetch) /* {{{ */ argument 723 if (prefetch < 0) { 724 prefetch [all...] |
Completed in 5 milliseconds