Home
last modified time | relevance | path

Searched refs:query (Results 1 – 25 of 469) sorted by relevance

12345678910>>...19

/PHP-7.4/ext/pdo_firebird/tests/
H A Dbug_77863.phpt28 $query->execute();
32 $query->execute();
36 $query->execute();
40 $query->execute();
44 $query->execute();
48 $query->execute();
52 $query->execute();
57 $query->execute();
61 $query->execute();
65 $query->execute();
[all …]
H A Ddialect_1.phpt25 $query = $dbh->prepare($sql);
26 $query->execute();
27 $row = $query->fetch(\PDO::FETCH_OBJ);
33 unset($query);
37 $query = $dbh->prepare($sql);
38 $query->execute([0.76, '2019-06-12']);
39 unset($query);
42 $query = $dbh->prepare($sql);
43 $query->execute();
44 $row = $query->fetch(\PDO::FETCH_OBJ);
[all …]
/PHP-7.4/ext/pdo_pgsql/tests/
H A Dbug62593.phpt21 $query->execute();
22 $errors[] = $query->errorInfo();
26 $query->execute();
27 $errors[] = $query->errorInfo();
33 $query->execute();
34 $errors[] = $query->errorInfo();
40 $query->execute();
41 $errors[] = $query->errorInfo();
42 var_dump($query->fetchColumn());
46 $query->execute();
[all …]
/PHP-7.4/ext/standard/tests/url/
H A Dbug74780.phpt2 Bug #74780 parse_url() borks when query string contains colon
6 parse_url('//php.net/path?query=1:2'),
7 parse_url('//php.net/path.php?query=a:b'),
8 parse_url('//username@php.net/path?query=1:2')
18 ["query"]=>
19 string(9) "query=1:2"
26 ["query"]=>
27 string(9) "query=a:b"
36 ["query"]=>
37 string(9) "query=1:2"
/PHP-7.4/ext/mysqli/tests/
H A Dbug79375.phpt25 echo "Running query on $name\n";
26 $stmt = $mysqli->prepare($query);
39 echo "Running query on $name\n";
55 $res = $mysqli->query($query);
81 $res = $mysqli->query($query, MYSQLI_USE_RESULT);
147 Running query on first connection
149 Running query on second connection
152 Running query on first connection
157 Running query on first connection
162 Running query on first connection
[all …]
H A Dmysqli_pam_sha256.phpt23 if (!($res = $link->query("SHOW PLUGINS"))) {
37 if (!($res = $link->query("SHOW STATUS LIKE 'Rsa_public_key'"))) {
49 if (!$link->query("SET @@session.old_passwords=2")) {
53 $link->query('DROP USER shatest');
54 $link->query("DROP USER shatest@localhost");
67 if (!$link->query("DROP TABLE IF EXISTS test") ||
68 !$link->query("CREATE TABLE test (id INT)") ||
69 !$link->query("INSERT INTO test(id) VALUES (1), (2), (3)"))
89 if (!$res = $link->query("SELECT id FROM test WHERE id = 1"))
109 $link->query('DROP USER shatest');
[all …]
/PHP-7.4/Zend/tests/variadic/
H A Dvariadic_changed_byref_error.phpt7 public function query($query, &...$params);
11 public function query($query, ...$params) { }
16 Fatal error: Declaration of MySQL::query($query, ...$params) must be compatible with DB::query($que…
H A Dvariadic_changed_typehint_error.phpt7 public function query($query, string ...$params);
11 public function query($query, int ...$params) { }
16 Fatal error: Declaration of MySQL::query($query, int ...$params) must be compatible with DB::query(…
H A Dnon_variadic_implements_variadic_error.phpt7 public function query($query, ...$params);
11 public function query($query, $params) { }
16 Fatal error: Declaration of MySQL::query($query, $params) must be compatible with DB::query($query,…
H A Dadding_additional_optional_parameter_error.phpt7 public function query($query, string ...$params);
11 public function query($query, int $extraParam = null, string ...$params) { }
16 …ror: Declaration of MySQL::query($query, ?int $extraParam = NULL, string ...$params) must be compa…
H A Dremoving_parameter_error.phpt11 public function query($query, ...$params);
15 public function query(...$params) { }
20 Fatal error: Declaration of MySQL::query(...$params) must be compatible with DB::query($query, ...$…
H A Dvariadic_implements_non_variadic.phpt7 public function query($query);
11 public function query($query, ...$params) { }
H A Dadding_additional_optional_parameter.phpt7 public function query($query, string ...$params);
11 public function query($query, string $extraParam = null, string ...$params) { }
/PHP-7.4/ext/pdo_dblib/tests/
H A Dbug_38955.phpt13 $db->query("CREATE table php_test(val int)");
15 $db->query("INSERT INTO php_test(val) values(1)");
16 $db->query("INSERT INTO php_test(val) values(2)");
17 $db->query("INSERT INTO php_test(val) values(3)");
18 $db->query("INSERT INTO php_test(val) values(4)");
23 $db->query("INSERT INTO php_test(val) values(5)");
24 $db->query("INSERT INTO php_test(val) values(6)");
25 $db->query("INSERT INTO php_test(val) values(7)");
26 $db->query("INSERT INTO php_test(val) values(8)");
29 $rs = $db->query("SELECT * FROM php_test");
[all …]
/PHP-7.4/ext/pdo/tests/
H A Dbug_44173.phpt2 PDO Common: Bug #44173 (PDO->query() parameter parsing/checking needs an update)
22 $stmt = $db->query();
27 $stmt = $db->query("SELECT * FROM test", PDO::FETCH_LAZY, 0, 0);
32 $stmt = $db->query("SELECT * FROM test", 'abc');
37 $stmt = $db->query("SELECT * FROM test", PDO::FETCH_CLASS, 0, 0, 0);
42 $stmt = $db->query("SELECT * FROM test", PDO::FETCH_INTO);
47 $stmt = $db->query("SELECT * FROM test", PDO::FETCH_COLUMN);
52 $stmt = $db->query("SELECT * FROM test", PDO::FETCH_CLASS);
58 Warning: PDO::query() expects at least 1 parameter, 0 given in %s
64 Warning: PDO::query(): SQLSTATE[HY000]: General error: mode must be an integer in %s
[all …]
/PHP-7.4/ext/pdo_mysql/tests/
H A Dbug_51670.phpt2 Bug #51670 (getColumnMeta causes segfault when re-executing query after calling nextRowset)
14 $query = $db->prepare('SELECT 1 AS num');
15 $query->execute();
16 if(!is_array($query->getColumnMeta(0))) die('FAIL!');
17 $query->nextRowset();
18 $query->execute();
19 if(!is_array($query->getColumnMeta(0))) die('FAIL!');
H A Dpdo_mysql_rollback.phpt23 $db->query("INSERT INTO test(id, label) VALUES (100, 'z')");
37 $db->query('DROP TABLE IF EXISTS test2');
38 $db->query('CREATE TABLE test2(id INT)');
47 $db->query('DROP TABLE IF EXISTS test2');
48 $db->query('CREATE TABLE test2(id INT) ENGINE=MyISAM');
50 $db->query('INSERT INTO test2(id) VALUES (1)');
56 $db->query('DROP TABLE IF EXISTS test2');
60 $db->query('DELETE FROM test');
66 $db->query('DELETE FROM test');
72 $db->query('DELETE FROM test');
[all …]
H A Dbug79375.phpt31 echo "Running query on $name\n";
33 $stmt = $db->query($query);
44 echo "Running query on $name\n";
45 $stmt = $db->prepare($query);
60 $stmt = $db->prepare($query);
100 Running query on first connection
102 Running query on second connection
105 Running query on first connection
107 Running query on second connection
110 Running query on first connection
[all …]
H A Dbug75177.phpt15 $pdo->query("DROP TABLE IF EXISTS $tbl");
16 $pdo->query("CREATE TABLE $tbl (`bit` bit(8)) ENGINE=InnoDB");
17 $pdo->query("INSERT INTO $tbl (`bit`) VALUES (1)");
18 $pdo->query("INSERT INTO $tbl (`bit`) VALUES (0b011)");
19 $pdo->query("INSERT INTO $tbl (`bit`) VALUES (0b01100)");
21 $ret = $pdo->query("SELECT * FROM $tbl")->fetchAll();
H A Dpdo_mysql_attr_autocommit.phpt20 $row = $db->query('SELECT @@autocommit AS _autocommit')->fetch(PDO::FETCH_ASSOC);
28 $row = $db->query('SELECT @@autocommit AS _autocommit')->fetch(PDO::FETCH_ASSOC);
33 if (!$db->query('SET autocommit = 1'))
40 if (!$db->query('SET autocommit = 0'))
46 $row = $db->query('SELECT @@autocommit AS _autocommit')->fetch(PDO::FETCH_ASSOC);
60 $db->query("INSERT INTO test(id, label) VALUES (100, 'z')");
67 $db->query('ROLLBACK');
75 $db->query('DELETE FROM test WHERE id = 100');
76 $db->query('ROLLBACK');
81 $db->query('DELETE FROM test WHERE id = 100');
[all …]
/PHP-7.4/ext/pdo_oci/tests/
H A Dpdo_oci_attr_action.phpt14 $query = 'select action from v$session where sid = sys_context(\'USERENV\', \'SID\')';
18 $stmt = $dbh->query($query);
25 $stmt = $dbh->query($query);
32 $stmt = $dbh->query($query);
39 $stmt = $dbh->query($query);
H A Dpdo_oci_attr_client_info.phpt14 $query = 'select client_info from v$session where sid = sys_context(\'USERENV\', \'SID\')';
18 $stmt = $dbh->query($query);
25 $stmt = $dbh->query($query);
32 $stmt = $dbh->query($query);
39 $stmt = $dbh->query($query);
H A Dpdo_oci_attr_client_identifier.phpt14 $query = 'select client_identifier from v$session where sid = sys_context(\'USERENV\', \'SID\')';
18 $stmt = $dbh->query($query);
25 $stmt = $dbh->query($query);
32 $stmt = $dbh->query($query);
39 $stmt = $dbh->query($query);
H A Dpdo_oci_attr_module.phpt14 $query = 'select module from v$session where sid = sys_context(\'USERENV\', \'SID\')';
20 $stmt = $dbh->query($query);
27 $stmt = $dbh->query($query);
34 $stmt = $dbh->query($query);
/PHP-7.4/ext/pdo_sqlite/tests/
H A Dpdo_sqlite_createcollation.phpt11 $db->query('CREATE TABLE IF NOT EXISTS foobar (id INT AUTO INCREMENT, name TEXT)');
13 $db->query('INSERT INTO foobar VALUES (NULL, "1")');
14 $db->query('INSERT INTO foobar VALUES (NULL, "2")');
15 $db->query('INSERT INTO foobar VALUES (NULL, "10")');
19 $result = $db->query('SELECT name FROM foobar ORDER BY name COLLATE MYCOLLATE');
24 $result = $db->query('SELECT name FROM foobar ORDER BY name');
29 $db->query('DROP TABLE foobar');

Completed in 33 milliseconds

12345678910>>...19