Home
last modified time | relevance | path

Searched refs:row (Results 276 – 300 of 348) sorted by relevance

1...<<11121314

/PHP-7.2/ext/mysqli/tests/
H A Dmysqli_fetch_array_large.phpt45 while ($row = mysqli_fetch_assoc($res)) {
46 if ($row['label'] != $random_char) {
48 $offset, $random_char, $row['label'], $len, mysqli_errno($link), mysqli_error($link));
H A Dmysqli_fetch_lengths_oo.phpt22 while ($row = $res->fetch_assoc())
H A Dmysqli_stmt_send_long_data_packet_size_libmysql.phpt36 if (!$row = mysqli_fetch_assoc($res))
41 if (0 === ($max_allowed_packet = (int)$row['Value']))
H A Dmysqli_character_set.phpt39 while ($row = mysqli_fetch_assoc($res))
40 $charsets[] = $row;
H A Dmysqli_fetch_assoc_no_alias_utf8.phpt69 while ($row = mysqli_fetch_assoc($res)) {
70 var_dump($row);
H A Dbug48909.phpt30 1366 - Incorrect integer value: '' for column 'id' at row 1
H A Dmysqli_fetch_lengths.phpt30 while ($row = mysqli_fetch_assoc($res))
H A Dmysqli_stmt_bind_limits.phpt92 $row = $res->fetch_row();
96 if ($row[$i + 1] != $i) {
H A Dmysqli_stmt_send_long_data_packet_size_mysqlnd.phpt36 if (!$row = mysqli_fetch_assoc($res))
41 if (0 === ($max_allowed_packet = (int)$row['Value']))
/PHP-7.2/ext/mysqli/
H A Dmysqli.c1154 MYSQL_ROW row; in php_mysqli_fetch_into_hash_aux() local
1159 if (!(row = mysql_fetch_row(result))) { in php_mysqli_fetch_into_hash_aux()
1172 if (row[i]) { in php_mysqli_fetch_into_hash_aux()
1180 case 8:llval = (my_ulonglong) bit_uint8korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1181 case 7:llval = (my_ulonglong) bit_uint7korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1182 case 6:llval = (my_ulonglong) bit_uint6korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1183 case 5:llval = (my_ulonglong) bit_uint5korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1184 case 4:llval = (my_ulonglong) bit_uint4korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1185 case 3:llval = (my_ulonglong) bit_uint3korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
1187 case 1:llval = (my_ulonglong) uint1korr(row[i]);break; in php_mysqli_fetch_into_hash_aux()
[all …]
/PHP-7.2/ext/pdo/
H A Dpdo_stmt.c245 row->stmt = stmt; in get_lazy_object()
250 GC_REFCOUNT(&row->std)--; in get_lazy_object()
2492 pdo_stmt_t *stmt = row->stmt; in row_prop_read()
2548 pdo_stmt_t *stmt = row->stmt; in row_prop_exists()
2601 pdo_stmt_t *stmt = row->stmt; in row_get_properties()
2695 pdo_row_t *row = (pdo_row_t *)std; in pdo_row_free_storage() local
2696 if (row->stmt) { in pdo_row_free_storage()
2697 ZVAL_UNDEF(&row->stmt->lazy_object_ref); in pdo_row_free_storage()
2698 OBJ_RELEASE(&row->stmt->std); in pdo_row_free_storage()
2705 zend_object_std_init(&row->std, ce); in pdo_row_new()
[all …]
/PHP-7.2/ext/pdo_firebird/tests/
H A Dbug_62024.phpt2 Bug #62024 Cannot insert second row with null using parametrized query (Firebird PDO)
/PHP-7.2/ext/oci8/tests/
H A Dbug36403.phpt35 $row = oci_fetch_array($s);
H A Ddrcp_pconn_close2.phpt25 // Query for the row updated. The new value should be returned
H A Dlob_040.phpt26 $row = array();
28 $row[$i] = oci_fetch_array($s, OCI_NUM);
32 echo "Row $i Size: " . $row[$i][0]->size() . "\n";
33 echo "Pos 1: " . $row[$i][0]->tell() . "\n";
34 echo "Data: " . $row[$i][0]->read(5) . "\n";
35 echo "Pos 2: " . $row[$i][0]->tell() . "\n";
36 echo "Data: " . $row[$i][0]->read(12) . "\n";
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 Dimp_res_get_3.phpt64 while (($row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS)) != false) {
65 foreach ($row as $item) {
H A Dedition_1.phpt44 while ($row = oci_fetch_row($s)) {
45 var_dump($row);
/PHP-7.2/ext/pdo_mysql/tests/
H A Dbug_42499.phpt13 $row = $stmt->fetch(PDO::FETCH_ASSOC);
15 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
H A Dpdo_mysql_attr_oracle_nulls.phpt36 $row = $stmt->fetch(PDO::FETCH_ASSOC);
37 if ((int)substr($row['_version'], 0, 1) >= 5)
H A Dpdo_mysql_stmt_getcolumnmeta.phpt11 $row = $stmt->fetch(PDO::FETCH_ASSOC);
12 $version = ((int)substr($row['_version'], 0, 1) * 10) + (int)substr($row['_version'], 2, 1);
88 $row = $stmt->fetch(PDO::FETCH_ASSOC);
146 $row = $stmt->fetch(PDO::FETCH_ASSOC);
147 $real_as_float = (false === stristr($row['_mode'], "REAL_AS_FLOAT")) ? false : true;
H A Dpdo_mysql_multi_stmt_nextrowset.phpt9 $row = $db->query('SELECT VERSION() as _version')->fetch(PDO::FETCH_ASSOC);
11 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
/PHP-7.2/ext/sqlite3/tests/
H A Dsqlite3_19_columninfo.phpt20 while ($row = $result->fetchArray(SQLITE3_NUM)) {
H A Dsqlite3_12_unfinalized_stmt_cleanup.phpt23 /* Only read one row and break */

Completed in 64 milliseconds

1...<<11121314