Lines Matching refs:row
21 "insert into fetch_object_2_tab values (123, '1st row col2 string', '1 more text')",
22 "insert into fetch_object_2_tab values (456, '2nd row col2 string', NULL)",
23 "insert into fetch_object_2_tab values (789, '3rd row col2 string', '3 more text')",
40 while ($row = oci_fetch_object($s)) {
41 var_dump($row);
54 while ($row = oci_fetch_object($s)) {
55 echo $row->COL1 . "\n";
56 echo $row->COL2->load() . "\n";
57 echo $row->COL3 . "\n";
106 1st row col2 string
109 2nd row col2 string
112 3rd row col2 string