Searched refs:prefetch (Results 1 – 13 of 13) sorted by relevance
/PHP-5.5/ext/pdo_oci/tests/ |
H A D | pdo_oci_attr_prefetch_2.phpt | 2 PDO_OCI: Attribute: prefetch on statements 18 echo "Test 1: Can't set prefetch after prepare\n"; 40 Test 1: Can't set prefetch after prepare
|
H A D | pdo_oci_attr_prefetch_1.phpt | 2 PDO_OCI: Attribute: Set prefetch on connection
|
/PHP-5.5/ext/mysqli/tests/ |
H A D | mysqli_stmt_attr_get_prefetch.phpt | 2 mysqli_stmt_attr_get() - prefetch 8 die("SKIP: prefetch isn't supported at the moment");
|
H A D | mysqli_stmt_attr_set.phpt | 236 /* prefetch is not supported
|
/PHP-5.5/ext/pdo_oci/ |
H A D | oci_driver.c | 34 static inline ub4 pdo_oci_sanitize_prefetch(long prefetch); 255 ub4 prefetch; in oci_handle_preparer() local 306 if (prefetch) { in oci_handle_preparer() 307 H->last_err = OCIAttrSet(S->stmt, OCI_HTYPE_STMT, &prefetch, 0, in oci_handle_preparer() 310 prefetch *= PDO_OCI_PREFETCH_ROWSIZE; in oci_handle_preparer() 311 H->last_err = OCIAttrSet(S->stmt, OCI_HTYPE_STMT, &prefetch, 0, in oci_handle_preparer() 725 if (prefetch < 0) { in pdo_oci_sanitize_prefetch() 726 prefetch = 0; in pdo_oci_sanitize_prefetch() 727 } else if (prefetch > UB4MAXVAL / PDO_OCI_PREFETCH_ROWSIZE) { in pdo_oci_sanitize_prefetch() 728 prefetch = PDO_OCI_PREFETCH_DEFAULT; in pdo_oci_sanitize_prefetch() [all …]
|
/PHP-5.5/ext/oci8/tests/ |
H A D | refcur_prefetch_2.phpt | 81 echo "------Test 1- Check Roundtrips with prefetch 0 and 5 -----------\n"; 91 echo "Number of roundtrips made with prefetch count 0 for 5 rows is $cnt\n"; 100 echo "Number of roundtrips made with prefetch count 5 for 5 rows is $cnt\n"; 146 ------Test 1- Check Roundtrips with prefetch 0 and 5 ----------- 177 Number of roundtrips made with prefetch count 0 for 5 rows is 6 208 Number of roundtrips made with prefetch count 5 for 5 rows is 2
|
H A D | refcur_prefetch_3.phpt | 60 echo "Number of roundtrips made with prefetch count 5 for 10 rows is $cnt\n"; 136 Number of roundtrips made with prefetch count 5 for 10 rows is 3
|
H A D | refcur_prefetch_1.phpt | 2 Prefetch with REF cursor. Test different values for prefetch with oci_set_prefetch(). 56 // Various values for prefetch 68 // This function sets the prefetch count to the given $value and fetches one row .
|
H A D | refcur_prefetch_4.phpt | 104 echo "------Test 2- Overwrite prefetch-----------\n"; 165 ------Test 2- Overwrite prefetch-----------
|
H A D | bug41069.phpt | 2 Bug #41069 (Oracle crash with certain data over a DB-link when prefetch memory limit used - Oracle …
|
/PHP-5.5/ext/oci8/ |
H A D | oci8_statement.c | 116 ub4 prefetch = size; in php_oci_statement_set_prefetch() local 123 …PHP_OCI_CALL_RETURN(statement->errcode, OCIAttrSet, (statement->stmt, OCI_HTYPE_STMT, &prefetch, 0… in php_oci_statement_set_prefetch()
|
/PHP-5.5/ |
H A D | php.ini-development | 1271 ; http://php.net/oci8.default-prefetch
|
H A D | php.ini-production | 1271 ; http://php.net/oci8.default-prefetch
|
Completed in 50 milliseconds