Searched refs:prefetch (Results 1 – 16 of 16) sorted by relevance
52 echo "Test 1 - prefetch 0\n";59 echo "\nTest 1 - prefetch 1\n";66 echo "\nTest 1 - prefetch 2\n";85 Test 1 - prefetch 0118 Test 1 - prefetch 1151 Test 1 - prefetch 2
88 echo "------Test 1- Check Roundtrips with prefetch 0 and 5 -----------\n";98 echo "Number of roundtrips made with prefetch count 0 for 5 rows is $cnt\n";107 echo "Number of roundtrips made with prefetch count 5 for 5 rows is $cnt\n";153 ------Test 1- Check Roundtrips with prefetch 0 and 5 -----------184 Number of roundtrips made with prefetch count 0 for 5 rows is 6215 Number of roundtrips made with prefetch count 5 for 5 rows is 2
2 Prefetch with REF cursor. Test different values for prefetch with oci_set_prefetch().63 // Various values for prefetch74 // Various invalid values for prefetch90 // This function sets the prefetch count to the given $value and fetches one row .
68 echo "Number of roundtrips made with prefetch count 5 for 10 rows is $cnt\n";144 Number of roundtrips made with prefetch count 5 for 10 rows is 3
111 echo "------Test 2- Overwrite prefetch-----------\n";172 ------Test 2- Overwrite prefetch-----------
2 Bug #41069 (Oracle crash with certain data over a DB-link when prefetch memory limit used - Oracle …
2 mysqli_stmt_attr_get() - prefetch7 die("SKIP: prefetch isn't supported at the moment");
186 // Invalid prefetch value205 /* prefetch is not supported
2 PDO_OCI: Attribute: prefetch on statements18 echo "Test 1: Can't set prefetch after prepare\n";40 Test 1: Can't set prefetch after prepare
2 PDO_OCI: Attribute: Set prefetch on connection
30 static inline ub4 pdo_oci_sanitize_prefetch(long prefetch);245 ub4 prefetch; in oci_handle_preparer() local295 …prefetch = H->prefetch; /* Note 0 is allowed so in future REF CURSORs can be used & then passed w… in oci_handle_preparer()299 prefetch *= PDO_OCI_PREFETCH_ROWSIZE; in oci_handle_preparer()455 H->prefetch = pdo_oci_sanitize_prefetch(lval); in oci_handle_set_attribute()625 ZVAL_LONG(return_value, H->prefetch); in oci_handle_get_attribute()734 H->prefetch = PDO_OCI_PREFETCH_DEFAULT; in pdo_oci_handle_factory()871 if (prefetch < 0) { in pdo_oci_sanitize_prefetch()872 prefetch = 0; in pdo_oci_sanitize_prefetch()874 prefetch = PDO_OCI_PREFETCH_DEFAULT; in pdo_oci_sanitize_prefetch()[all …]
34 ub4 prefetch; member
189 int php_oci_statement_set_prefetch(php_oci_statement *statement, ub4 prefetch ) in php_oci_statement_set_prefetch() argument193 if (prefetch > 20000) { in php_oci_statement_set_prefetch()194 prefetch = 20000; /* keep it somewhat sane */ in php_oci_statement_set_prefetch()197 …PHP_OCI_CALL_RETURN(errstatus, OCIAttrSet, (statement->stmt, OCI_HTYPE_STMT, &prefetch, 0, OCI_ATT… in php_oci_statement_set_prefetch()205 statement->prefetch_count = prefetch; in php_oci_statement_set_prefetch()
487 int php_oci_statement_set_prefetch(php_oci_statement *statement, ub4 prefetch);
1272 ; http://php.net/oci8.default-prefetch
1274 ; http://php.net/oci8.default-prefetch
Completed in 49 milliseconds