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