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";
88 %unicode|string%(19) "1st row col2 string"
96 %unicode|string%(19) "2nd row col2 string"
104 %unicode|string%(19) "3rd row col2 string"
110 1st row col2 string
113 2nd row col2 string
116 3rd row col2 string