Home
last modified time | relevance | path

Searched refs:row (Results 151 – 175 of 348) sorted by path

12345678910>>...14

/PHP-7.4/ext/oci8/tests/
H A Dbug42841.phpt57 while($row = oci_fetch_array($cursor, OCI_ASSOC + OCI_RETURN_LOBS)) {
58 $data1[] = $row;
75 while($row = oci_fetch_array($cursor, OCI_ASSOC + OCI_RETURN_LOBS)) {
76 $data2[] = $row;
102 while (ocifetchinto($cur, $row, OCI_ASSOC)) {
103 $ret[] = $row;
H A Dbug43492.phpt53 ocifetchinto($cur, $row, OCI_NUM);
54 echo "$row[0] ";
H A Dbug43492_2.phpt45 ocifetchinto($cur, $row, OCI_NUM);
46 echo "$row[0] ";
H A Dbug43497.phpt21 $row = oci_fetch($stmt);
36 $row = oci_fetch($stmt);
H A Dbug70700.phpt47 $row = oci_fetch_array($select, OCI_ASSOC);
48 $lob = $row['DATA'];
78 $row = oci_fetch_array($select, OCI_ASSOC);
79 $lob = $row['DATA'];
109 $row = oci_fetch_array($select, OCI_ASSOC);
110 $lob = $row['DATA'];
140 $row = oci_fetch_array($select, OCI_ASSOC);
141 $lob = $row['DATA'];
H A Dbug71422.phpt22 while ($row = oci_fetch_array($stmt, OCI_ASSOC+OCI_RETURN_NULLS)) {
23 var_dump($row);
30 while ($row = oci_fetch_array($stmt, OCI_ASSOC+OCI_RETURN_NULLS)) {
31 var_dump($row);
38 while ($row = oci_fetch_array($stmt, OCI_ASSOC+OCI_RETURN_NULLS)) {
39 var_dump($row);
H A Dconnect_scope1.phpt50 // insert 2nd row on returned statement, committing both rows
H A Dconnect_scope2.phpt50 // insert 2nd row on returned statement, committing both rows
H A Ddbmsoutput.phpt30 pipe row (line);
95 while ($row = oci_fetch_array($s, OCI_NUM)) {
96 $res[] = $row[0];
H A Ddefine3.phpt32 // New row with different data
H A Ddescriptors.phpt35 var_dump($row = oci_fetch_assoc($statement));
36 unset($row['BLOB']);
H A Ddrcp_pconn_close2.phpt25 // Query for the row updated. The new value should be returned
H A Dedition_1.phpt44 while ($row = oci_fetch_row($s)) {
45 var_dump($row);
H A Dfetch.phpt33 $row = ociresult($s, 1);
35 var_dump($row);
H A Dfetch_all4.phpt35 $row = array(1,2,3); // this array is replaced as a result of the query
36 $row = oci_fetch_array($s);
37 var_dump($row);
H A Dfetch_array.phpt41 while ($row = oci_fetch_array($s)) {
42 var_dump($row);
50 while ($row = oci_fetch_array($s, OCI_NUM)) {
51 var_dump($row);
59 while ($row = oci_fetch_array($s, OCI_ASSOC)) {
60 var_dump($row);
68 while ($row = oci_fetch_array($s, OCI_BOTH)) {
69 var_dump($row);
78 var_dump($row);
87 var_dump($row);
[all …]
H A Dfetch_assoc.phpt29 while ($row = oci_fetch_assoc($s)) {
30 var_dump($row);
H A Dfetch_object.phpt38 var_dump($row);
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 string(19) "1st row col2 string"
96 string(19) "2nd row col2 string"
110 1st row col2 string
113 2nd row col2 string
[all …]
H A Dfetch_object_1.phpt38 var_dump($row);
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 string(19) "1st row col2 string"
96 string(19) "2nd row col2 string"
110 1st row col2 string
113 2nd row col2 string
[all …]
H A Dfetch_object_2.phpt18 "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)",
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
[all …]
H A Dfetch_row.phpt31 while ($row = oci_fetch_row($s)) {
32 var_dump($row);
H A Dfield_funcs.phpt40 $row = oci_fetch_array($s, OCI_NUM + OCI_RETURN_NULLS + OCI_RETURN_LOBS);
41 var_dump($row);
43 foreach ($row as $num => $field) {
H A Dfield_funcs1.phpt32 $row = oci_fetch_array($s, OCI_NUM + OCI_RETURN_NULLS + OCI_RETURN_LOBS);
33 var_dump($row);
H A Dfield_funcs3.phpt35 $row = oci_fetch_array($s, OCI_NUM + OCI_RETURN_NULLS + OCI_RETURN_LOBS);
36 var_dump($row);
38 foreach ($row as $num => $field) {
H A Dfield_funcs_old.phpt40 ocifetchinto($s, $row, OCI_NUM + OCI_RETURN_NULLS + OCI_RETURN_LOBS);
41 var_dump($row);
43 foreach ($row as $num => $field) {

Completed in 39 milliseconds

12345678910>>...14