Searched refs:ocifetchinto (Results 1 – 11 of 11) sorted by relevance
/PHP-7.2/ext/oci8/tests/ |
H A D | fetch_into1.phpt | 2 various ocifetchinto() tests 39 var_dump(ocifetchinto($s, $all, OCI_NUM)); 41 var_dump(ocifetchinto($s, $all, OCI_ASSOC)); 43 var_dump(ocifetchinto($s, $all, OCI_RETURN_NULLS)); 45 var_dump(ocifetchinto($s, $all, OCI_RETURN_LOBS)); 47 var_dump(ocifetchinto($s, $all, OCI_NUM+OCI_ASSOC)); 49 var_dump(ocifetchinto($s, $all, OCI_NUM+OCI_ASSOC+OCI_RETURN_NULLS)); 51 var_dump(ocifetchinto($s, $all, OCI_NUM+OCI_ASSOC+OCI_RETURN_NULLS+OCI_RETURN_LOBS)); 53 var_dump(ocifetchinto($s, $all, OCI_RETURN_NULLS+OCI_RETURN_LOBS)); 55 var_dump(ocifetchinto($s, $all, OCI_ASSOC+OCI_RETURN_NULLS+OCI_RETURN_LOBS)); [all …]
|
H A D | fetch_into2.phpt | 2 ocifetchinto() & wrong number of params 39 var_dump(ocifetchinto($s)); 41 var_dump(ocifetchinto($s, $all, OCI_ASSOC, 5)); 43 var_dump(ocifetchinto($c, $all, OCI_RETURN_LOBS)); 45 var_dump(ocifetchinto($s, $all, 1000000)); 53 Warning: ocifetchinto() expects at least 2 parameters, 1 given in %s on line %d 59 Warning: ocifetchinto() expects at most 3 parameters, 4 given in %s on line %d 63 Warning: ocifetchinto(): supplied resource is not a valid oci8 statement resource in %s on line %d
|
H A D | fetch_into.phpt | 2 ocifetchinto() 28 /* ocifetchinto */ 32 var_dump(ocifetchinto($s, $all)); 35 /* ocifetchinto */ 39 var_dump(ocifetchinto($s, $all, OCI_NUM+OCI_ASSOC+OCI_RETURN_NULLS+OCI_RETURN_LOBS));
|
H A D | cursors_old.phpt | 32 while ($result = ocifetchinto($stmt, $data, OCI_ASSOC)) { 34 ocifetchinto($data["CURS"], $subdata, OCI_ASSOC); 37 ocifetchinto($data["CURS"], $subdata, OCI_ASSOC); 62 Warning: ocifetchinto():%sORA-01002: %s in %scursors_old.php on line %d
|
H A D | field_funcs_old.phpt | 40 ocifetchinto($s, $row, OCI_NUM + OCI_RETURN_NULLS + OCI_RETURN_LOBS);
|
H A D | bug42841.phpt | 102 while (ocifetchinto($cur, $row, OCI_ASSOC)) {
|
H A D | reflection1.phpt | 27 reflection::export(new reflectionfunction('ocifetchinto')); 275 Function [ <internal%s> function ocifetchinto ] {
|
H A D | bug43492.phpt | 45 ocifetchinto($s, $result, OCI_ASSOC); 53 ocifetchinto($cur, $row, OCI_NUM);
|
H A D | bug43492_2.phpt | 37 ocifetchinto($s, $result, OCI_ASSOC); 45 ocifetchinto($cur, $row, OCI_NUM);
|
/PHP-7.2/ext/oci8/ |
H A D | oci8.c | 649 PHP_FUNCTION(ocifetchinto); 739 PHP_FE(ocifetchinto, arginfo_ocifetchinto)
|
H A D | oci8_interface.c | 1455 PHP_FUNCTION(ocifetchinto) in PHP_FUNCTION() argument
|
Completed in 24 milliseconds