Searched defs:prefetch (Results 1 - 2 of 2) sorted by relevance
| /PHP_5_3/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_3/ext/pdo_oci/ |
| H A D | oci_driver.c | 34 static inline ub4 pdo_oci_sanitize_prefetch(long prefetch); 253 ub4 prefetch; local 303 prefetch = pdo_oci_sanitize_prefetch(pdo_attr_lval(driver_options, PDO_ATTR_PREFETCH, PDO_OCI_PREFETCH_DEFAULT TSRMLS_CC)); 304 if (prefetch) { 305 H->last_err = OCIAttrSet(S->stmt, OCI_HTYPE_STMT, &prefetch, 0, 308 prefetch *= PDO_OCI_PREFETCH_ROWSIZE; 309 H->last_err = OCIAttrSet(S->stmt, OCI_HTYPE_STMT, &prefetch, 0, 719 static inline ub4 pdo_oci_sanitize_prefetch(long prefetch) /* {{{ */ argument 721 if (prefetch < 0) { 722 prefetch [all...] |
Completed in 5 milliseconds