Home
last modified time | relevance | path

Searched refs:execute (Results 76 – 100 of 374) sorted by relevance

12345678910>>...15

/PHP-8.3/ext/pdo_oci/tests/
H A Dbug60994.phpt37 $insert->execute();
39 $select->execute();
57 $insert->execute();
59 $select->execute();
77 $insert->execute();
79 $select->execute();
97 $insert->execute();
99 $select->execute();
/PHP-8.3/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_closecursor.phpt44 $stmt2->execute();
50 $stmt1->execute();
71 $stmt2->execute();
74 $stmt1->execute();
86 $stmt->execute();
104 $stmt->execute();
158 Warning: PDO::query(): SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbu…
163 Warning: PDO::query(): SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbu…
169 Warning: PDO::query(): SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbu…
174 Warning: PDO::query(): SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbu…
H A Dpdo_mysql_prepare_native.phpt53 $ret = @$stmt->execute($input_params);
55 $ret = $stmt->execute($input_params);
68 if (is_array($error_info) && isset($error_info['execute'])) {
70 if (isset($error_info['execute']['sqlstate']) &&
71 ($error_info['execute']['sqlstate'] !== $tmp[0])) {
73 $offset, $error_info['execute']['sqlstate'], $tmp[0]);
77 if (isset($error_info['execute']['mysql']) &&
78 ($error_info['execute']['mysql'] !== $tmp[1])) {
80 $offset, $error_info['execute']['mysql'], $tmp[0]);
148 $params, array('execute' => array('sqlstate' => 'HY093')));
[all …]
H A Dpdo_mysql_stmt_unbuffered_2050.phpt42 PDO::query() will prepare and execute a statement in one step.
72 ---> execute() has been send on the line, you are supposed to fetch
73 ---> you must not try to send a CLOSE after execute()
83 - use prepare() + execute() instead of query()
92 $stmt->execute();
96 $stmt->execute();
H A Dbug_61755.phpt22 $s->execute();
29 $s->execute();
H A Dbug66528.phpt50 SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbuffered queries are acti…
51 SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbuffered queries are acti…
52 SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbuffered queries are acti…
/PHP-8.3/ext/pdo_pgsql/tests/
H A Dbug71885.phpt25 $stmt->execute();
31 $stmt->execute();
H A Dbug70313.phpt22 $stmt->execute([1]);
31 $stmt->execute([1]);
H A Dis_in_transaction.phpt29 $stmt->execute();
42 $stmt->execute();
44 …/* We catch the exception because the execute will give error and we must test the PDO::PGSQL_TRAN…
H A Dbug71885_2.phpt32 $stmt->execute(['b']);
36 $stmt->execute(['a']);
/PHP-8.3/ext/pdo_firebird/tests/
H A Dignore_parammarks.phpt23 $query->execute(['d' => 1, 'e' => 2]);
34 $query->execute(['d' => 1, 'e' => 2]);
H A Dbug_47415.phpt27 $stmt->execute();
34 $stmt->execute();
H A Dbug_48877.phpt28 $stmt->execute();
35 $stmt->execute();
/PHP-8.3/ext/pdo_sqlite/tests/
H A Dbug33841.phpt15 var_dump($stmt->execute(), $stmt->rowCount());
20 var_dump($stmt->execute(), $stmt->rowCount());
H A Dpdo_sqlite_tostring_exception.phpt26 $stmt->execute();
32 $stmt->execute();
/PHP-8.3/ext/sqlite3/tests/
H A Dsqlite3_blob_bind_resource.phpt2 SQLite3::execute() with a resource bound for blob param
27 var_dump($insert_stmt->execute());
H A Dsqlite3_rename_column.phpt19 $res1 = $db->prepare('select * from tbl')->execute();
20 $res2 = $db->prepare('select * from tbl')->execute();
H A Dbug70628.phpt16 $sth->execute();
23 $sth->execute();
/PHP-8.3/ext/mysqli/tests/
H A Dmysqli_ps_select_union.phpt31 if (!$stmt->execute() || !$stmt->bind_result($column1))
55 /* Note: bind_result before execute */
56 if (!$stmt->bind_result($column1) || !$stmt->execute())
85 if (!$stmt->execute() || !$stmt->bind_result($column1))
104 if (!$stmt->bind_result($column1) || !$stmt->execute())
132 if (!$stmt->execute() || !$stmt->bind_result($column1))
151 if (!$stmt->bind_result($column1) || !$stmt->execute())
171 … if (!$stmt->bind_param('ss', $three, $two) || !$stmt->execute() || !$stmt->bind_result($column1))
189 … if (!$stmt->bind_param('ss', $three, $two) || !$stmt->bind_result($column1) || !$stmt->execute())
209 … if (!$stmt->bind_param('ss', $three, $two) || !$stmt->execute() || !$stmt->bind_result($column1))
[all …]
H A Dps_cursor_multiple_result_sets.phpt29 $stmt->execute();
44 $stmt->execute();
61 $stmt->execute();
H A Dmysqli_stmt_execute_stored_proc.phpt33 …printf("[012] Cannot execute CALL, [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
37 …printf("[013] Cannot execute CALL, [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
46 …printf("[016] Cannot execute SELECT, [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt…
77 …printf("[021] Cannot execute CALL, [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
86 …printf("[024] Cannot execute SELECT, [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt…
115 …printf("[030] Cannot execute CALL, [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
124 …printf("[033] Cannot execute SELECT, [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt…
157 …printf("[040] Cannot execute CALL, [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
166 …printf("[043] Cannot execute SELECT, [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt…
/PHP-8.3/ext/pdo/tests/
H A Dpdo_028.phpt26 $stmt->execute();
29 $stmt->execute();
H A Dpdo_017.phpt48 $select->execute();
56 $delete->execute();
63 $delete->execute();
/PHP-8.3/ext/oci8/tests/
H A Ddefine6.phpt64 echo "Test 3 - define before cursor execute\n";
77 echo "Test 4 - define before top level execute\n";
130 Test 3 - define before cursor execute
132 Test 4 - define before top level execute
/PHP-8.3/sapi/phpdbg/tests/
H A Dbasic_run.phpt7 prompt> [Nothing to execute!]

Completed in 25 milliseconds

12345678910>>...15