Lines Matching refs:row
20 "insert into fetch_object_2_tab values (123, '1st row col2 string', '1 more text')",
21 "insert into fetch_object_2_tab values (456, '2nd row col2 string', NULL)",
22 "insert into fetch_object_2_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->COL1 . "\n";
55 echo $row->COL2->load() . "\n";
56 echo $row->COL3 . "\n";
105 1st row col2 string
108 2nd row col2 string
111 3rd row col2 string