Home
last modified time | relevance | path

Searched refs:statement (Results 1 – 25 of 173) sorted by relevance

1234567

/PHP-8.2/ext/odbc/
H A Dodbc.stub.php317 /** @param resource $statement */
320 /** @param resource $statement */
329 /** @param resource $statement */
332 /** @param resource $statement */
354 /** @param resource $statement */
357 /** @param resource $statement */
362 * @param resource $statement
367 /** @param resource $statement */
370 /** @param resource $statement */
374 * @param resource $statement
[all …]
H A Dodbc_arginfo.h8 ZEND_ARG_INFO(0, statement)
13 ZEND_ARG_INFO(0, statement)
23 ZEND_ARG_INFO(0, statement)
28 ZEND_ARG_INFO(0, statement)
44 ZEND_ARG_INFO(0, statement)
51 ZEND_ARG_INFO(0, statement)
57 ZEND_ARG_INFO(0, statement)
63 ZEND_ARG_INFO(0, statement)
68 ZEND_ARG_INFO(0, statement)
73 ZEND_ARG_INFO(0, statement)
[all …]
/PHP-8.2/ext/sqlite3/tests/
H A Dsqlite3stmt_getsql_expanded.phpt24 echo "Getting expanded SQL statement\n";
27 echo "Execute statement\n";
40 echo "Getting expanded SQL statement\n";
49 Getting expanded SQL statement
51 Execute statement
64 Getting expanded SQL statement
H A Dbug77051.phpt19 echo "Execute statement\n";
28 echo "Execute statement\n";
39 echo "Execute statement\n";
47 Execute statement
60 Execute statement
73 Execute statement
H A Dsqlite3_35_stmt_readonly.phpt25 echo "Checking select statement\n";
29 echo "Checking update statement\n";
33 echo "Checking delete statement\n";
47 Checking select statement
49 Checking update statement
51 Checking delete statement
H A Dsqlite3stmt_getsql.phpt18 echo "Getting non-expanded SQL statement\n";
21 echo "Execute statement\n";
33 Getting non-expanded SQL statement
35 Execute statement
H A Dsqlite3_prepare_faultystmt.phpt2 SQLite3::prepare test, testing for faulty statement
19 Warning: SQLite3::prepare(): Unable to prepare statement: no such table: bar in %s on line %d
H A Dbug72668.phpt28 $statement = $db->prepare('SELECT my_udf_md5("test")');
30 $result = $statement->execute();
/PHP-8.2/ext/mysqli/tests/
H A Dbug80837.phpt21 $statement = $mysqli->prepare("SELECT b FROM test");
22 $statement->execute();
23 $statement->bind_result($name);
24 $statement->fetch();
26 $statement->store_result();
H A Dbug69899.phpt5 free_result is called on a prepared statement followed by closing that
6 statement. This is due to mysqlnd_stmt::free_result (mysqlnd_ps.c) which
7 unconditionally sets the connection of the statement to ready, despite the fact
/PHP-8.2/ext/mysqli/
H A Dmysqli.stub.php1592 function mysqli_stmt_close(mysqli_stmt $statement): true {}
1596 function mysqli_stmt_errno(mysqli_stmt $statement): int {}
1599 function mysqli_stmt_error(mysqli_stmt $statement): string {}
1605 function mysqli_stmt_error_list(mysqli_stmt $statement): array {}
1607 function mysqli_stmt_fetch(mysqli_stmt $statement): ?bool {}
1609 function mysqli_stmt_field_count(mysqli_stmt $statement): int {}
1611 function mysqli_stmt_free_result(mysqli_stmt $statement): void {}
1627 function mysqli_stmt_next_result(mysqli_stmt $statement): bool {}
1632 function mysqli_stmt_param_count(mysqli_stmt $statement): int {}
1636 function mysqli_stmt_reset(mysqli_stmt $statement): bool {}
[all …]
/PHP-8.2/ext/standard/tests/array/
H A Darray_filter_variation7.phpt14 echo "Anonymous callback function with regular parameter and statement\n";
21 // anonymous callback function with argument and null statement
22 echo "Anonymous callback function with regular argument and null statement\n";
29 Anonymous callback function with regular parameter and statement
59 Anonymous callback function with regular argument and null statement
/PHP-8.2/Zend/tests/
H A Dns_033.phpt2 033: Import statement with non-compound name
9 Warning: The use statement with non-compound name 'A' has no effect in %sns_033.php on line 2
11 Warning: The use statement with non-compound name 'B' has no effect in %sns_033.php on line 3
H A Ddeclare_005.phpt2 Testing declare statement with ticks
10 $statement;
H A Ddeclare_007.phpt2 Testing declare statement with ticks with callback arguments
12 $statement;
H A Dfunction_outside_namespace.phpt12 Fatal error: Namespace declaration statement has to be the very first statement or after any declar…
H A Dns_068.phpt13 Fatal error: Namespace declaration statement has to be the very first statement or after any declar…
H A Dns_083.phpt14 Fatal error: Namespace declaration statement has to be the very first statement or after any declar…
H A Dnamespace_first_stmt_nop.phpt2 Nop statement before namespace
/PHP-8.2/ext/pdo/tests/
H A Dbug_69356.phpt22 …Dumps the information contained by a prepared statement directly on the output. It will provide th…
26 … only dumps the parameters in the statement at the moment of the dump. Extra parameters are not st…
42 …Dumps the information contained by a prepared statement directly on the output. It will provide th…
46 … only dumps the parameters in the statement at the moment of the dump. Extra parameters are not st…
H A Dbug_60665.phpt22 $statement = $db->prepare("SELECT NULL AS null_value, 0 AS zero, 1 AS one $from");
23 $statement->execute();
24 $row = $statement->fetch(PDO::FETCH_LAZY);
/PHP-8.2/ext/pdo_pgsql/tests/
H A Dbug71573.phpt18 $statement = $db->prepare('select ?');
19 $statement->execute([ 'test', 'test', 'test' ]);
H A Dbug72294.phpt122 $statement = $prepared_statement_cache->prepare( $pdo, <<<SQL
126 $statement->execute();
138 $statement = $this->cache->prepare( $pdo, 'SELECT * FROM test72294 WHERE test_column > 0' );
139 $statement->execute();
/PHP-8.2/Zend/tests/assert/
H A Dexpect_empty_stmt_bug.phpt2 Empty statement in assert() shouldn't segfault
/PHP-8.2/ext/standard/tests/strings/
H A Dbug20108.phpt2 Bug #20108 (Segfault on printf statement)

Completed in 69 milliseconds

1234567