Home
last modified time | relevance | path

Searched refs:query (Results 101 – 125 of 529) sorted by relevance

12345678910>>...22

/PHP-8.1/ext/mysqli/tests/
H A Dgh9841.phpt18 $mysqli->query("SELECT (
24 $mysqli->query("SELECT (
42 $mysqli->query("SELECT (
51 $mysqli->query("SELECT (
H A Dbug77935.phpt18 $db->query('DROP PROCEDURE IF EXISTS testSp');
19 $db->query(<<<'SQL'
42 $link->query('DROP PROCEDURE IF EXISTS testSp');
H A Dbug80837.phpt17 $mysqli->query('DROP TABLE IF EXISTS test');
18 $mysqli->query('CREATE TABLE test (b int)');
19 $mysqli->query('INSERT INTO test VALUES (1),(2),(3)');
H A Dbug36745.phpt18 $mysql->query("DROP TABLE IF EXISTS litest");
19 $mysql->query("CREATE TABLE litest (a VARCHAR(20))");
21 $mysql->query("LOAD DATA LOCAL INFILE 'filenotfound' INTO TABLE litest");
H A D048.phpt17 $mysql->query("DROP TABLE IF EXISTS test_fetch_null");
19 $mysql->query("CREATE TABLE test_fetch_null(col1 tinyint, col2 smallint,
27 …$mysql->query("INSERT INTO test_fetch_null(col1,col10, col11) VALUES(1,'foo1', 1000),(2,'foo2', 88…
40 $mysql->query("DROP TABLE IF EXISTS test_fetch_null");
H A Dbug66043.phpt16 if (!$db->query("DROP TABLE IF EXISTS test")) {
21 if (!$db->query("CREATE TABLE test(str TEXT)")) {
26 if (!$db->query("INSERT INTO test(str) VALUES ('Test')")) {
H A Dmysqli_local_infile_directory_access_allowed.phpt31 if (!$link->query("DROP TABLE IF EXISTS test")) {
35 if (!$link->query("CREATE TABLE test (id INT UNSIGNED NOT NULL PRIMARY KEY) ENGINE=" . $engine)) {
40 if (!$link->query("LOAD DATA LOCAL INFILE '".$filepath."' INTO TABLE test")) {
45 if (!$link->query("LOAD DATA LOCAL INFILE '".$filepath."' INTO TABLE test")) {
74 if (!$link->query($link, 'DROP TABLE IF EXISTS test')) {
H A Dbug77956.phpt27 if (!$link->query("DROP TABLE IF EXISTS test")) {
30 …if (!$link->query("CREATE TABLE test (dump1 INT UNSIGNED NOT NULL PRIMARY KEY) ENGINE=" . $engine)…
35 if (!$link->query("SELECT 1 FROM DUAL"))
37 if (!$link->query("LOAD DATA LOCAL INFILE 'bug77956.data' INTO TABLE test")) {
52 if (!$link->query('DROP TABLE IF EXISTS test')) {
/PHP-8.1/ext/soap/tests/
H A Dbug80672.phpt9 $query = $soap->query(array('sXML' => 'something'));
/PHP-8.1/ext/dom/tests/
H A DDOMNode_C14N_basic.phpt32 var_dump($node->C14N(false, false, ['query' => []]));
39 DOMNode::C14N(): Argument #3 ($xpath) must have a "query" key
40 DOMNode::C14N(): Argument #3 ($xpath) "query" option must be a string, array given
H A Dbug75451.phpt2 Bug #75451 (Assertion fails while foreach on empty xpath query)
10 foreach($xpath->query('/root/noexist') as $child) {
H A Dbug69373.phpt2 Bug #69373 References to deleted XPath query results
11 $all = $xpath->query('//*');
H A DDOMNode_C14NFile_basic.phpt34 var_dump($node->C14NFile($output, false, false, ['query' => []]));
47 DOMNode::C14NFile(): Argument #4 ($xpath) must have a "query" key
48 DOMNode::C14NFile(): Argument #4 ($xpath) "query" option must be a string, array given
/PHP-8.1/ext/pdo_mysql/tests/
H A Dlast_insert_id.phpt17 print_r($db->query("CREATE TABLE test (id int auto_increment primary key, num int)"));
19 print_r($db->query("INSERT INTO test (id, num) VALUES (23, 42)"));
21 print_r($db->query("INSERT INTO test (num) VALUES (451)"));
H A Dpdo_mysql_connect_attr.phpt13 $stmt = $pdo->query("select count(*) from information_schema.tables where table_schema='performance…
18 $stmt = $pdo->query("show variables like 'performance_schema'");
36 …$stmt = $pdo->query("select * from performance_schema.session_connect_attrs where ATTR_NAME='_serv…
47 $stmt = $pdo->query("select * from performance_schema.session_connect_attrs where ATTR_NAME='_clien…
/PHP-8.1/ext/pdo_sqlite/tests/
H A Dbug46139.phpt18 $stmt = $db->query("SELECT 'foo' test, 1");
23 $stmt = $db->query("SELECT 'foo' test, 1");
28 $stmt = $db->query("SELECT 'foo' test, 1");
H A Dbug38334.phpt11 var_dump($db->query('SELECT * FROM test')->fetch(PDO::FETCH_ASSOC));
15 $i = $db->query('SELECT i FROM test WHERE f = 0.0')->fetchColumn(0);
24 var_dump($db->query('SELECT * FROM test WHERE s = "x"')->fetch(PDO::FETCH_ASSOC));
/PHP-8.1/ext/mysqli/
H A Dmysqli_report.c52 void php_mysqli_report_index(const char *query, unsigned int status) { in php_mysqli_report_index() argument
62 php_mysqli_throw_sql_exception("00000", 0, "%s used in query/prepared statement %s", index, query); in php_mysqli_report_index()
/PHP-8.1/ext/sqlite3/tests/
H A Dbug81742.phpt10 $db->query("ATTACH 'file:..%2ffoo.php' as db2;");
13 Warning: SQLite3::query(): not authorized in %s on line %d
/PHP-8.1/ext/pdo_oci/tests/
H A Dpdo_oci_debugdumpparams.phpt2 PDO_OCI: Bug #69356 (PDOStatement::debugDumpParams() truncates query)
17 $stmt = $db->query("
19query in use, the number of parameters used (Params), the list of parameters, with their name, typ…
31query in use, the number of parameters used (Params), the list of parameters, with their name, typ…
/PHP-8.1/ext/pdo/tests/
H A Dpdo_034.phpt24 var_dump($db->query("SELECT a,b FROM test")->fetch(PDO::FETCH_KEY_PAIR));
25 var_dump($db->query("SELECT a,b FROM test")->fetchAll(PDO::FETCH_KEY_PAIR));
26 var_dump($db->query("SELECT * FROM test")->fetch(PDO::FETCH_KEY_PAIR));
27 var_dump($db->query("SELECT a,a FROM test")->fetchAll(PDO::FETCH_KEY_PAIR));
H A Dpdo_039.phpt33 $query = 'SELECT 1';
35 $query .= ' FROM DUAL';
40 $stmt = $conn->prepare($query);
/PHP-8.1/ext/pdo_pgsql/tests/
H A Dbug46274.phpt20 @$db->query("SET bytea_output = 'escape'");
24 $db->query('CREATE TABLE test_one_blob (id SERIAL NOT NULL, blob1 BYTEA)');
52 $res = $db->query("SELECT blob1 from test_one_blob");
65 $db->query('DROP TABLE test_one_blob');
/PHP-8.1/ext/standard/tests/strings/
H A Durl_t.phpt219 ["query"]=>
230 ["query"]=>
241 ["query"]=>
254 ["query"]=>
300 ["query"]=>
379 ["query"]=>
405 ["query"]=>
420 ["query"]=>
431 ["query"]=>
444 ["query"]=>
[all …]
/PHP-8.1/ext/oci8/tests/
H A Dfetch_all4.phpt2 Test oci_fetch_* array overwriting when query returns no rows
26 $res = array(1,2,3); // this array is replaced as a result of the query
35 $row = array(1,2,3); // this array is replaced as a result of the query

Completed in 26 milliseconds

12345678910>>...22