Lines Matching refs:row
20 "insert into fetch_object_tab values (123, '1st row col2 string', '1 more text')",
21 "insert into fetch_object_tab values (456, '2nd row col2 string', '2 more text')",
22 "insert into fetch_object_tab values (789, '3rd row col2 string', '3 more text')",
39 while ($row = oci_fetch_object($s)) {
40 var_dump($row);
53 while ($row = oci_fetch_object($s)) {
54 echo $row->caseSensitive . "\n";
55 echo $row->SECONDCOL . "\n";
56 echo $row->ANOTHERCOL . "\n";
69 $row = oci_fetch_object($s);
70 echo $row->caseSensitive . "\n";
71 echo $row->CASESENSITIVE . "\n";
88 string(19) "1st row col2 string"
96 string(19) "2nd row col2 string"
104 string(19) "3rd row col2 string"
110 1st row col2 string
113 2nd row col2 string
116 3rd row col2 string