Home
last modified time | relevance | path

Searched refs:prefetch (Results 1 – 16 of 16) sorted by relevance

/PHP-8.3/ext/oci8/tests/
H A Dimp_res_prefetch.phpt54 echo "Test 1 - prefetch 0\n";
61 echo "\nTest 1 - prefetch 1\n";
68 echo "\nTest 1 - prefetch 2\n";
87 Test 1 - prefetch 0
120 Test 1 - prefetch 1
153 Test 1 - prefetch 2
H A Drefcur_prefetch_2.phpt90 echo "------Test 1- Check Roundtrips with prefetch 0 and 5 -----------\n";
100 echo "Number of roundtrips made with prefetch count 0 for 5 rows is $cnt\n";
109 echo "Number of roundtrips made with prefetch count 5 for 5 rows is $cnt\n";
155 ------Test 1- Check Roundtrips with prefetch 0 and 5 -----------
186 Number of roundtrips made with prefetch count 0 for 5 rows is 6
217 Number of roundtrips made with prefetch count 5 for 5 rows is 2
H A Drefcur_prefetch_1.phpt2 Prefetch with REF cursor. Test different values for prefetch with oci_set_prefetch().
65 // Various values for prefetch
76 // Various invalid values for prefetch
92 // This function sets the prefetch count to the given $value and fetches one row .
H A Drefcur_prefetch_3.phpt70 echo "Number of roundtrips made with prefetch count 5 for 10 rows is $cnt\n";
146 Number of roundtrips made with prefetch count 5 for 10 rows is 3
H A Drefcur_prefetch_4.phpt113 echo "------Test 2- Overwrite prefetch-----------\n";
174 ------Test 2- Overwrite prefetch-----------
H A Dbug41069.phpt2 Bug #41069 (Oracle crash with certain data over a DB-link when prefetch memory limit used - Oracle …
/PHP-8.3/ext/mysqli/tests/
H A Dmysqli_stmt_attr_get_prefetch.phpt2 mysqli_stmt_attr_get() - prefetch
8 die("SKIP: prefetch isn't supported at the moment");
H A Dmysqli_stmt_attr_set.phpt185 // Invalid prefetch value
204 /* prefetch is not supported
/PHP-8.3/ext/pdo_oci/tests/
H A Dpdo_oci_attr_prefetch_2.phpt2 PDO_OCI: Attribute: prefetch on statements
20 echo "Test 1: Can't set prefetch after prepare\n";
42 Test 1: Can't set prefetch after prepare
H A Dpdo_oci_attr_prefetch_1.phpt2 PDO_OCI: Attribute: Set prefetch on connection
/PHP-8.3/ext/pdo_oci/
H A Doci_driver.c30 static inline ub4 pdo_oci_sanitize_prefetch(long prefetch);
241 ub4 prefetch; in oci_handle_preparer() local
289prefetch = H->prefetch; /* Note 0 is allowed so in future REF CURSORs can be used & then passed w… in oci_handle_preparer()
293 prefetch *= PDO_OCI_PREFETCH_ROWSIZE; in oci_handle_preparer()
463 H->prefetch = pdo_oci_sanitize_prefetch(lval); in oci_handle_set_attribute()
636 ZVAL_LONG(return_value, H->prefetch); in oci_handle_get_attribute()
746 H->prefetch = PDO_OCI_PREFETCH_DEFAULT; in pdo_oci_handle_factory()
888 if (prefetch < 0) { in pdo_oci_sanitize_prefetch()
889 prefetch = 0; in pdo_oci_sanitize_prefetch()
891 prefetch = PDO_OCI_PREFETCH_DEFAULT; in pdo_oci_sanitize_prefetch()
[all …]
H A Dphp_pdo_oci_int.h41 ub4 prefetch; member
/PHP-8.3/ext/oci8/
H A Doci8_statement.c195 int php_oci_statement_set_prefetch(php_oci_statement *statement, ub4 prefetch) in php_oci_statement_set_prefetch() argument
199 if (prefetch > 20000) { in php_oci_statement_set_prefetch()
200 prefetch = 20000; /* keep it somewhat sane */ in php_oci_statement_set_prefetch()
203 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrSet, (statement->stmt, OCI_HTYPE_STMT, &prefetch, 0, OCI_ATT… in php_oci_statement_set_prefetch()
211 statement->prefetch_count = prefetch; in php_oci_statement_set_prefetch()
H A Dphp_oci8_int.h494 int php_oci_statement_set_prefetch(php_oci_statement *statement, ub4 prefetch);
/PHP-8.3/
H A Dphp.ini-production1300 ; https://php.net/oci8.default-prefetch
1307 ; https://php.net/oci8.prefetch-lob-size
H A Dphp.ini-development1298 ; https://php.net/oci8.default-prefetch
1305 ; https://php.net/oci8.prefetch-lob-size

Completed in 150 milliseconds