/PHP-7.2/ext/pdo_pgsql/tests/ |
H A D | bug62593.phpt | 21 $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.2/ext/standard/tests/url/ |
H A D | bug74780.phpt | 2 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.2/Zend/tests/variadic/ |
H A D | variadic_changed_byref_error.phpt | 7 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 D | variadic_changed_typehint_error.phpt | 7 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 D | non_variadic_implements_variadic_error.phpt | 7 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 D | adding_additional_optional_parameter_error.phpt | 7 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 D | removing_parameter_error.phpt | 11 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 D | variadic_implements_non_variadic.phpt | 7 public function query($query); 11 public function query($query, ...$params) { }
|
/PHP-7.2/ext/sqlite3/tests/ |
H A D | sqlite3_query_error.phpt | 2 SQLite3::query parameters 12 echo 'Testing SQLite3 query without parameters' . PHP_EOL; 13 $db->query(); 15 echo 'Testing SQLite3 query with one array parameter' . PHP_EOL; 16 $db->query(array()); 19 var_dump($db->query('')); 24 Testing SQLite3 query without parameters 26 Warning: SQLite3::query() expects exactly 1 parameter, 0 given in %s on line %d 27 Testing SQLite3 query with one array parameter 29 Warning: SQLite3::query() expects parameter 1 to be string, array given in %s on line %d
|
/PHP-7.2/ext/pgsql/ |
H A D | mysql_users.php | 22 $query = ' 31 return pg_query($db, $query); 41 $query = " 53 return pg_query($db, $query); 64 $query = " 79 return pg_query($db, $query);
|
/PHP-7.2/ext/pdo_dblib/tests/ |
H A D | bug_38955.phpt | 13 $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.2/ext/pdo/tests/ |
H A D | bug_44173.phpt | 2 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.2/ext/pdo_mysql/tests/ |
H A D | bug_51670.phpt | 2 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 D | pdo_mysql_rollback.phpt | 23 $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 D | pdo_mysql_attr_autocommit.phpt | 20 $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 …]
|
H A D | pdo_mysql_stmt_unbuffered_2050.phpt | 2 MySQL PDO:query() vs. PDO::prepare() and MySQL error 2050 27 $stmt = $db->query('SELECT id, label FROM test WHERE id = 1'); 29 $stmt = $db->query('SELECT id, label FROM test WHERE id = 1'); 35 $stmt = $db->query('SELECT id, label FROM test WHERE id = 1'); 41 PDO::query() will prepare and execute a statement in one step. 48 $stmt = PDO::query(<some query>) 56 $stmt = PDO::query(<some query>) 57 PDO::query(<some query>) 63 $stmt = PDO::query(<some query>) 82 - use prepare() + execute() instead of query() [all …]
|
H A D | bug75177.phpt | 15 $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();
|
/PHP-7.2/ext/pdo_oci/tests/ |
H A D | pdo_oci_attr_action.phpt | 14 $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 D | pdo_oci_attr_client_identifier.phpt | 14 $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 D | pdo_oci_attr_client_info.phpt | 14 $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 D | pdo_oci_attr_module.phpt | 14 $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.2/ext/mysqli/tests/ |
H A D | mysqli_pam_sha256.phpt | 23 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 …]
|
H A D | mysqli_pam_sha256_public_key_ini.phpt | 23 if (!($res = $link->query("SHOW PLUGINS"))) { 37 if (!($res = $link->query("SHOW STATUS LIKE 'Rsa_public_key'"))) { 62 if (!$link->query("SET @@session.old_passwords=2")) { 66 $link->query('DROP USER shatest'); 67 $link->query("DROP USER shatest@localhost"); 80 if (!$link->query("DROP TABLE IF EXISTS test") || 81 !$link->query("CREATE TABLE test (id INT)") || 82 !$link->query("INSERT INTO test(id) VALUES (1), (2), (3)")) 104 if (!$res = $link->query("SELECT id FROM test WHERE id = 1")) 120 $link->query('DROP USER shatest'); [all …]
|
/PHP-7.2/ext/pdo_sqlite/tests/ |
H A D | pdo_sqlite_createcollation.phpt | 11 $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');
|
/PHP-7.2/ext/phar/tests/files/ |
H A D | pear2coverage.phar.php | 1069 $result = $this->db->query($query); 1086 $result = $this->db->query($query); 1117 $result = $this->db->query($query); 1136 $result = $this->db->query($query); 1166 $result = $this->db->query($query); 1179 $result = $this->db->query($query); 1212 $result = $this->db->query($query); 1227 $result = $this->db->query($query); 1248 $result = $this->db->query($query); 1389 $result = $this->db->query($query); [all …]
|