Lines Matching refs:row
22 function print_row($row)
24 foreach ($row as $item) {
49 …while (($row = oci_fetch_array($s, OCI_ASSOC+OCI_RETURN_NULLS)) != false) { // use parent $s inst…
50 print_row($row);
59 while (($row = oci_fetch_row($s1)) != false) {
60 print_row($row);
62 while (($row = oci_fetch_row($s)) != false) {
63 print_row($row);
71 while (($row = oci_fetch_row($s1)) != false) {
72 print_row($row);
74 $row = oci_fetch_row($s);
75 print_row($row);
77 while (($row = oci_fetch_row($s1)) != false) {
78 print_row($row);
80 while (($row = oci_fetch_row($s)) != false) {
81 print_row($row);
90 while (($row = oci_fetch_row($s)) != false) { // parent
91 print_row($row);