Home
last modified time | relevance | path

Searched refs:fetch (Results 26 – 50 of 285) sorted by relevance

12345678910>>...12

/PHP-5.5/ext/pdo/tests/
H A Dpdo_016a.phpt44 while($stmt2->fetch(PDO::FETCH_BOUND)) {
66 var_dump($stmt3->fetch(PDO::FETCH_BOUND));
75 var_dump($stmt4->fetch(PDO::FETCH_BOUND));
88 var_dump($stmt3->fetch(PDO::FETCH_BOUND));
92 var_dump($stmt4->fetch(PDO::FETCH_BOUND));
103 while($stmt2->fetch(PDO::FETCH_BOUND))
H A Dbug_44173.phpt61 Warning: PDO::query(): SQLSTATE[HY000]: General error: fetch mode doesn't allow any extra arguments…
70 Warning: PDO::query(): SQLSTATE[HY000]: General error: fetch mode requires the object parameter in …
73 Warning: PDO::query(): SQLSTATE[HY000]: General error: fetch mode requires the colno argument in %s
76 Warning: PDO::query(): SQLSTATE[HY000]: General error: fetch mode requires the classname argument i…
H A Dbug_38253.phpt2 PDO Common: Bug #38253 (PDO produces segfault with default fetch mode)
43 Warning: PDOStatement::fetchAll(): SQLSTATE[HY000]: General error: No fetch class specified in %s o…
49 Warning: PDOStatement::fetchAll(): SQLSTATE[HY000]: General error: No fetch function specified in %…
H A Dpdo_019.phpt2 PDO Common: fetch() and while()
38 while($stmt->fetch(PDO::FETCH_BOUND)) {
/PHP-5.5/ext/pdo_sqlite/tests/
H A Dbug44327_2.phpt15 $y = $x->fetch();
23 $y = $x->fetch(PDO::FETCH_LAZY);
H A Dbug46139.phpt22 $r1 = $stmt->fetch();
32 $r1 = $stmt->fetch(PDO::FETCH_CLASS | PDO::FETCH_PROPS_LATE);
/PHP-5.5/ext/pdo_oci/tests/
H A Dpdo_oci_attr_prefetch_1.phpt23 // Verify can fetch
26 while ($r = $s->fetch()) {
H A Dbug46274.phpt51 var_dump($res->fetch());
54 var_dump($res->fetch());
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_fetch_non_select.phpt2 MySQL PDOStatement->execute()/fetch(), Non-SELECT
27 while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
44 while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
61 while ($row = $stmt->fetch(PDO::FETCH_ASSOC))
85 while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
119 while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
151 while ($row = $stmt->fetch(PDO::FETCH_ASSOC))
H A Dpdo_mysql_stmt_fetch_serialize_simple.phpt2 MySQL PDOStatement->fetch(), PDO::FETCH_SERIALIZE
59 printf("\nAnd now PDO using setFetchMode(PDO::FETCH:CLASS|PDO::FETCH_SERIALIZE) + fetch()...\n");
63 var_dump($stmt->fetch());
89 And now PDO using setFetchMode(PDO::FETCH:CLASS|PDO::FETCH_SERIALIZE) + fetch()...
H A Dpdo_mysql_stmt_closecursor.phpt35 // fetch only the first rows and let closeCursor() clean up
36 $row1 = $stmt1->fetch(PDO::FETCH_ASSOC);
47 // check if changing the fetch mode from unbuffered to buffered will
50 $row2 = $stmt1->fetch(PDO::FETCH_ASSOC);
62 // fetch only the first rows and let closeCursor() clean up
63 $row3 = $stmt1->fetch(PDO::FETCH_ASSOC);
74 $row4 = $stmt1->fetch(PDO::FETCH_ASSOC);
96 while ($stmt->fetch(PDO::FETCH_BOUND))
H A Dbug_45120.phpt22 $res = $stmt->fetch(PDO::FETCH_ASSOC);
29 $res = $stmt->fetch(PDO::FETCH_ASSOC);
/PHP-5.5/pear/
H A DMakefile.frag9 FETCH = `which fetch 2>/dev/null`
27 …$(top_builddir)/sapi/cli/php -n $(srcdir)/fetch.php http://pear.php.net/install-pear-nozlib.phar $…
/PHP-5.5/ext/mysqli/tests/
H A D067.phpt54 while ($stmt[0]->fetch()) {
55 $stmt[1]->fetch();
56 $stmt[2]->fetch();
H A Dmysqli_ps_select_union.phpt35 while ($stmt->fetch()) {
61 while ($stmt->fetch()) {
91 while ($stmt->fetch()) {
111 while ($stmt->fetch()) {
140 while ($stmt->fetch()) {
160 while ($stmt->fetch()) {
182 while ($stmt->fetch()) {
200 while ($stmt->fetch()) {
222 while ($stmt->fetch()) {
240 while ($stmt->fetch()) {
H A Dmysqli_stmt_bind_param_check_param_no_change.phpt29 $stmt->fetch();
48 $stmt->fetch();
60 $stmt->fetch();
H A Dmysqli_stmt_reset.phpt13 // Note: No SQL tests here! We can expand one of the *fetch()
16 // fetch tests, because the fetch tests would have to call prepare/execute etc.
111 Warning: mysqli_stmt_reset(): Couldn't fetch mysqli_stmt in %s on line %d
H A Dbug32405.phpt2 Bug #32405 (mysqli->fetch() is returning bad data)
25 while ($stmt->fetch()) {
H A Dmysqli_query_stored_proc.phpt29 // skip results, don't fetch all from server
42 // fetch all results from server, but skip on client side
55 // fetch all results from server, but skip on client side
80 // fetch all results from server, but skip on client side
109 printf("[014] Cannot fetch user variable, [%d] %s\n", mysqli_errno($link), mysqli_error($link));
137 printf("[021] Cannot fetch user variable, [%d] %s\n", mysqli_errno($link), mysqli_error($link));
/PHP-5.5/ext/dba/
H A Ddba_dbm.c103 gval = fetch(gkey); in DBA_FETCH_FUNC()
118 gval = fetch(gkey); in DBA_UPDATE_FUNC()
135 gval = fetch(gkey); in DBA_EXISTS_FUNC()
/PHP-5.5/ext/pdo_firebird/tests/
H A Dbug_47415.phpt25 $rows = $stmt->fetch(PDO::FETCH_BOUND);
26 var_dump($stmt->fetch());
H A Dbug_48877.phpt25 $rows = $stmt->fetch();
26 var_dump($stmt->fetch());
H A Dexecute.phpt35 var_dump($s->fetch());
41 var_dump($s->fetch());
/PHP-5.5/ext/spl/internal/
H A Dfilteriterator.inc44 $this->fetch();
61 protected function fetch() {
77 $this->fetch();
/PHP-5.5/ext/pdo_pgsql/tests/
H A Dlarge_objects.phpt40 while (($row = $stmt->fetch(PDO::FETCH_ASSOC))) {
51 while (($row = $stmt->fetch(PDO::FETCH_ASSOC))) {
62 while (($row = $stmt->fetch(PDO::FETCH_ASSOC))) {

Completed in 36 milliseconds

12345678910>>...12