Home
last modified time | relevance | path

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

1...<<111213

/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_autocommit_oo.phpt69 printf("[014] Expecting 1 row in table test, found %d rows. [%d] %s\n",
118 printf("[028] Expecting 1 row in table test, found %d rows. [%d] %s\n",
H A Dmysqli_report.phpt202 if (!$row = mysqli_fetch_assoc($res))
205 $log_slow_query = ('ON' == $row['Value']);
212 if (!$row = mysqli_fetch_assoc($res))
215 $log_queries_not_using_indexes = ('ON' == $row['Value']);
H A Dmysqli_commit.phpt59 printf("[12] Expecting 1 row in table test, found %d rows\n", $tmp['num']);
H A Dmysqli_stmt_get_result.phpt138 while ($row = mysqli_fetch_assoc($result)) {
139 var_dump($row);
H A Dmysqli_debug_mysqlnd_only.phpt47 while ($row = mysqli_fetch_assoc($res))
H A Dmysqli_more_results.phpt75 while ($row = mysqli_fetch_array($res))
H A Dbug34810.phpt33 … - Column 'a' cannot be null, 1263 - Data truncated; NULL supplied to NOT NULL column 'a' at row */
H A Dmysqli_commit_oo.phpt67 printf("[010] Expecting 1 row in table test, found %d rows\n", $tmp['num']);
H A Dmysqli_stmt_get_result_types.phpt82 while ($row = mysqli_fetch_assoc($res)) {
83 $bind_res = &$row['label'];
/PHP-5.5/ext/oci8/tests/
H A Dbug43497.phpt24 $row = oci_fetch($stmt);
39 $row = oci_fetch($stmt);
H A Dfield_funcs1.phpt32 $row = oci_fetch_array($s, OCI_NUM + OCI_RETURN_NULLS + OCI_RETURN_LOBS);
33 var_dump($row);
H A Ddefine3.phpt32 // New row with different data
H A Dbug43497_92.phpt28 $row = oci_fetch($stmt);
43 $row = oci_fetch($stmt);
H A Dbind_char_1.phpt192 while ($row = oci_fetch_array($s, OCI_ASSOC+OCI_RETURN_NULLS)) {
193 foreach ($row as $item) {
H A Dbind_char_1_11gR1.phpt191 while ($row = oci_fetch_array($s, OCI_ASSOC+OCI_RETURN_NULLS)) {
192 foreach ($row as $item) {
H A Dnum.phpt94 // One row
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_nextrowset.phpt11 $row = $db->query('SELECT VERSION() as _version')->fetch(PDO::FETCH_ASSOC);
13 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
H A Dpdo_mysql_prepare_native_named_placeholder.phpt24 // INSERT a single row
H A Dpdo_mysql_prepare_native_clear_error.phpt25 // INSERT a single row
H A Dpdo_mysql_prepare_native_dup_named_placeholder.phpt25 // INSERT a single row
/PHP-5.5/ext/sybase_ct/
H A Dphp_sybase_ct.c131 ZEND_ARG_INFO(0, row)
2043 long row; in PHP_FUNCTION() local
2047 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlz", &sybase_result_index, &row, &field) ==… in PHP_FUNCTION()
2053 …if (result->last_retcode != CS_END_DATA && result->last_retcode != CS_END_RESULTS && row >= result… in PHP_FUNCTION()
2054 php_sybase_fetch_result_row(result, row TSRMLS_CC); in PHP_FUNCTION()
2057 if (row < 0 || row >= result->num_rows) { in PHP_FUNCTION()
2058 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Sybase: Bad row offset (%ld)", row); in PHP_FUNCTION()
2088 *return_value = result->data[row][field_offset]; in PHP_FUNCTION()
/PHP-5.5/ext/oci8/
H A Doci8_interface.c1425 zval *row; local
1427 MAKE_STD_ZVAL(row);
1428 array_init(row);
1435 zend_hash_next_index_insert(Z_ARRVAL_P(row), &element, sizeof(zval*), NULL);
1439 …zend_symtable_update(Z_ARRVAL_P(row), columns[ i ]->name, columns[ i ]->name_len+1, &element, size…
1442 …zend_hash_update(Z_ARRVAL_P(row), columns[ i ]->name, columns[ i ]->name_len+1, &element, sizeof(z…
1447 zend_hash_next_index_insert(Z_ARRVAL_P(array), &row, sizeof(zval*), NULL);
/PHP-5.5/ext/pgsql/
H A Dphp_pgsql.h272 int row; member
/PHP-5.5/ext/mssql/
H A Dphp_mssql.c110 ZEND_ARG_INFO(0, row)
1848 long row; local
1852 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlZ", &mssql_result_index, &row, &field) == …
1858 if (row < 0 || row >= result->num_rows) {
1859 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Bad row offset (%ld)", row);
1889 *return_value = result->data[row][field_offset];
/PHP-5.5/ext/dom/tests/
H A Ddomelement.phpt53 $rows = $node->getElementsByTagName('row');

Completed in 80 milliseconds

1...<<111213