Lines Matching refs:row
23 function print_row($row)
25 foreach ($row as $item) {
50 …while (($row = oci_fetch_array($s, OCI_ASSOC+OCI_RETURN_NULLS)) != false) { // use parent $s inst…
51 print_row($row);
60 while (($row = oci_fetch_row($s1)) != false) {
61 print_row($row);
63 while (($row = oci_fetch_row($s)) != false) {
64 print_row($row);
72 while (($row = oci_fetch_row($s1)) != false) {
73 print_row($row);
75 $row = oci_fetch_row($s);
76 print_row($row);
78 while (($row = oci_fetch_row($s1)) != false) {
79 print_row($row);
81 while (($row = oci_fetch_row($s)) != false) {
82 print_row($row);
91 while (($row = oci_fetch_row($s)) != false) { // parent
92 print_row($row);