Lines Matching refs:row
18 "insert into fetch_object_tab values (123, '1st row col2 string', '1 more text')",
19 "insert into fetch_object_tab values (456, '2nd row col2 string', '2 more text')",
20 "insert into fetch_object_tab values (789, '3rd row col2 string', '3 more text')",
37 while ($row = oci_fetch_object($s)) {
38 var_dump($row);
51 while ($row = oci_fetch_object($s)) {
52 echo $row->caseSensitive . "\n";
53 echo $row->SECONDCOL . "\n";
54 echo $row->ANOTHERCOL . "\n";
67 $row = oci_fetch_object($s);
68 echo $row->caseSensitive . "\n";
69 echo $row->CASESENSITIVE . "\n";
86 string(19) "1st row col2 string"
94 string(19) "2nd row col2 string"
102 string(19) "3rd row col2 string"
108 1st row col2 string
111 2nd row col2 string
114 3rd row col2 string