Home
last modified time | relevance | path

Searched refs:row (Results 1 – 25 of 315) sorted by last modified time

12345678910>>...13

/PHP-5.5/ext/sybase_ct/tests/
H A Dbug28354.phpt35 while ($row= sybase_fetch_row($r)) {
36 var_dump($i++, $row[0]);
H A Dtest.inc73 while ($row= sybase_fetch_assoc($h)) {
74 $return[]= $row;
80 // Fires an SQL query and returns the first value from the first row
H A Dtest_query_nostore.phpt48 while ($row= sybase_fetch_assoc($q)) {
49 var_dump($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/sqlite3/tests/
H A Dsqlite3_36_create_collation.phpt24 while ($row = $defaultSort->fetchArray()){
25 echo $row['s'], "\n";
29 while ($row = $naturalSort->fetchArray()){
30 echo $row['s'], "\n";
H A Dsqlite3_12_unfinalized_stmt_cleanup.phpt23 /* Only read one row and break */
H A Dsqlite3_19_columninfo.phpt20 while ($row = $result->fetchArray(SQLITE3_NUM)) {
H A Dbug53463.phpt14 while ($row = $result->fetchArray(SQLITE3_NUM)) {
H A Dbug68760.phpt23 while ($row = $naturalSort->fetchArray()) {
24 echo $row['col1'], "\n";
H A Dsqlite3_05_delete.phpt26 echo "DELETING a row\n";
60 DELETING a row
/PHP-5.5/ext/spl/tests/
H A DSplFileObject_setCsvControl_basic.phpt17 foreach ($s as $row) {
18 list($fruit, $quantity) = $row;
H A DSplFileObject_setCsvControl_variation001.phpt17 foreach ($s as $row) {
18 list($fruit, $quantity) = $row;
/PHP-5.5/ext/pgsql/tests/
H A Dpg_update_001.phpt28 while ($row = pg_fetch_assoc($rs)) {
29 var_dump($row);
H A D80_bug27597.phpt31 while($row = xi_fetch_array($res)) {
32 print_r($row);
H A D80_bug32223.phpt44 $row = pg_fetch_row($res, 0);
45 var_dump($row);
47 if ($row[0] == 'f')
H A D80_bug32223b.phpt45 $row = pg_fetch_row($res, 0);
46 var_dump($row);
48 if ($row[0] == 'f')
H A D08escape.phpt54 $row = pg_fetch_array($result, 0, PGSQL_ASSOC);
56 if ($data === pg_unescape_bytea($row['bin'])) {
/PHP-5.5/ext/pgsql/
H A Dpgsql.c2507 long row; local
2534 pgsql_row = row;
2600 row = -1;
2604 if (row < 0) {
2621 pgsql_row = row;
2845 long row; local
2854 if (row < 0 || row >= PQntuples(pg_result->result)) {
2859 pg_result->row = row;
2873 long row; local
2900 pgsql_row = row;
[all …]
H A Dphp_pgsql.h272 int row; member
/PHP-5.5/ext/pdo_sqlite/tests/
H A Dpdo_sqlite_createaggregate.phpt18 foreach ($db->query('SELECT testing(name) FROM foobar') as $row) {
19 var_dump($row);
H A Dpdo_sqlite_createcollation.phpt20 foreach ($result as $row) {
21 echo $row['name'] . "\n";
25 foreach ($result as $row) {
26 echo $row['name'] . "\n";
H A Dpdo_sqlite_createfunction.phpt19 foreach ($db->query('SELECT testing(name) FROM foobar') as $row) {
20 var_dump($row);
/PHP-5.5/ext/pdo_odbc/tests/
H A Dlong_columns.phpt80 foreach ($db->query('SELECT id, data from TEST') as $row) {
81 $expect = alpha_repeat($row[0]);
82 if (strcmp($expect, $row[1])) {
83 echo "Failed on size $row[id]:\n";
84 printf("Expected %d bytes, got %d\n", strlen($expect), strlen($row['data']));
86 echo ($row['data']) . "\n";
88 echo "Passed on size $row[id]\n";
/PHP-5.5/ext/pdo_pgsql/tests/
H A Dbug43925.phpt48 foreach ($stmt->fetchAll() as $row) {
49 print implode(' - ', $row);
H A Dlarge_objects.phpt40 while (($row = $stmt->fetch(PDO::FETCH_ASSOC))) {
41 var_dump($row['blobid']);
51 while (($row = $stmt->fetch(PDO::FETCH_ASSOC))) {
52 var_dump($row['blobid']);
53 var_dump(is_int($row['bloboid']));
62 while (($row = $stmt->fetch(PDO::FETCH_ASSOC))) {
63 var_dump($row['blobid']);
64 var_dump(is_int($row['bloboid']));

Completed in 73 milliseconds

12345678910>>...13