Home
last modified time | relevance | path

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

12345678910>>...19

/PHP-7.4/ext/mysqli/tests/
H A D048.phpt16 $mysql->query("DROP TABLE IF EXISTS test_fetch_null");
18 $mysql->query("CREATE TABLE test_fetch_null(col1 tinyint, col2 smallint,
26 …$mysql->query("INSERT INTO test_fetch_null(col1,col10, col11) VALUES(1,'foo1', 1000),(2,'foo2', 88…
39 $mysql->query("DROP TABLE IF EXISTS test_fetch_null");
H A D074.phpt16 $result = $mysqli->query("SELECT @@autocommit");
20 $result = $mysqli->query("SELECT @@autocommit");
H A D066.phpt18 $mysql->query("DROP TABLE IF EXISTS test_warnings");
20 $mysql->query("CREATE TABLE test_warnings (a int not null) ENGINE=myisam");
22 $mysql->query("INSERT INTO test_warnings VALUES (1),(2),(NULL)");
H A Dbug_bits.phpt16 if (!$link->query("DROP TABLE IF EXISTS bug_bits")) {
20 if (!$link->query("CREATE TABLE `bug_bits` (`inty` bigint(20) unsigned NOT NULL DEFAULT '0', `bitty…
31 if (!$link->query($insertQuery)) {
35 if (!($res = $link->query("SELECT * FROM `bug_bits`"))) {
H A Dbug70949.phpt17 $mysql->query("DROP TABLE IF EXISTS bug70949");
18 $mysql->query("CREATE TABLE bug70949(name varchar(255))");
19 $mysql->query("INSERT INTO bug70949 VALUES ('dummy'),(NULL),('foo'),('bar')");
H A Dbug73800.phpt15 $link->query('SET @@global.max_allowed_packet = 67108864');
21 $res = $link->query("SELECT RPAD('1',9000000,'1') as a,RPAD('1',9000000,'1') as b, 9223372036854775…
H A Dbug74021.phpt14 $link->query('SET @@global.max_allowed_packet = 67108864');
18 $res = $link->query("SELECT RPAD('1',9000000,'1') as a,RPAD('1',9000000,'1') as b");
H A Dmysqli_errno_oo.phpt26 if (!$mysqli->query('DROP TABLE IF EXISTS test')) {
30 $mysqli->query('SELECT * FROM test');
33 @$mysqli->query('No SQL');
H A Dbug35517.phpt14 $mysql->query("CREATE TABLE temp (id INT UNSIGNED NOT NULL)");
15 … $mysql->query("INSERT INTO temp (id) VALUES (3000000897),(3800001532),(3900002281),(3100059612)");
33 $mysql->query("DROP TABLE temp");
H A Dbug35759.phpt15 $mysql->query("DROP TABLE IF EXISTS test");
23 if (!$mysql->query($create)) {
32 if (!$mysql->query("INSERT INTO test (a0) VALUES ('')"))
H A Dbug51647.phpt19 if ($res = $link->query('SHOW VARIABLES LIKE "have_ssl"')) {
22 if ($link->errno == 1064 && ($res = $link->query("SHOW VARIABLES"))) {
51 if (!$res = $link->query('SHOW STATUS like "Ssl_cipher"')) {
54 if ($res = $link->query("SHOW STATUS")) {
81 if (!$res = $link->query('SHOW STATUS like "Ssl_cipher"')) {
84 if ($res = $link->query("SHOW STATUS")) {
H A Dmysqli_commit_oo.phpt41 if (!$mysqli->query('DROP TABLE IF EXISTS test')) {
45 if (!$mysqli->query('CREATE TABLE test(id INT) ENGINE = InnoDB')) {
49 if (!$mysqli->query('INSERT INTO test(id) VALUES (1)')) {
58 if (!$mysqli->query('ROLLBACK'))
61 if (!$res = $mysqli->query('SELECT COUNT(*) AS num FROM test')) {
71 if (!$mysqli->query('DROP TABLE IF EXISTS test')) {
/PHP-7.4/ext/opcache/tests/
H A Dissue0057.phpt15 function dummy($query) {
17 switch ($query) {
/PHP-7.4/ext/standard/tests/url/
H A Dbug68917.phpt14 [query] => a=b
21 [query] => a=b
H A Dparse_url_basic_001.phpt223 ["query"]=>
337 ["query"]=>
348 ["query"]=>
361 ["query"]=>
374 ["query"]=>
385 ["query"]=>
398 ["query"]=>
409 ["query"]=>
422 ["query"]=>
433 ["query"]=>
[all …]
H A Dparse_url_unterminated.phpt225 ["query"]=>
339 ["query"]=>
350 ["query"]=>
363 ["query"]=>
376 ["query"]=>
387 ["query"]=>
400 ["query"]=>
411 ["query"]=>
424 ["query"]=>
435 ["query"]=>
[all …]
/PHP-7.4/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
/PHP-7.4/ext/pdo_dblib/tests/
H A Dbug_54648.phpt11 $db->query('set dateformat ymd');
12 $rs = $db->query("select cast('1950-01-18 23:00:00' as smalldatetime) as sdt, cast('2030-01-01 23:5…
/PHP-7.4/ext/pdo_mysql/tests/
H A Dbug71145.phpt2 Bug #71145: Multiple statements in init command triggers unbuffered query error
21 var_dump($pdo->query('SELECT 42')->fetchColumn(0));
H A Dpdo_mysql_pconnect.phpt22 $stmt = $db2->query('SELECT @pdo_persistent_connection as _pers');
27 $stmt = $db1->query('SELECT CONNECTION_ID() as _con1');
31 $stmt = $db2->query('SELECT CONNECTION_ID() as _con2');
40 $stmt = $db1->query('SELECT CONNECTION_ID() as _con1');
63 $stmt = $db1->query('SELECT CONNECTION_ID() as _con1');
68 $stmt = $db2->query('SELECT CONNECTION_ID() as _con2');
H A Dpdo_mysql_attr_fetch_table_names.phpt16 $stmt = $db->query('SELECT label FROM test LIMIT 1');
21 $stmt = $db->query('SELECT label FROM test LIMIT 1');
/PHP-7.4/ext/pdo_pgsql/tests/
H A Dbug70861.phpt18 @$db->query("SET bytea_output = 'escape'");
22 $db->query('DROP TABLE IF EXISTS test_blob_crash CASCADE');
23 $db->query('CREATE TABLE test_blob_crash (id SERIAL NOT NULL, blob1 BYTEA)');
H A Dbug46274_2.phpt18 @$db->query("SET bytea_output = 'escape'");
22 $db->query('CREATE TABLE test_one_blob (id SERIAL NOT NULL, blob1 BYTEA)');
50 $res = $db->query("SELECT blob1 from test_one_blob");
66 $db->query('DROP TABLE test_one_blob');
/PHP-7.4/ext/pdo_sqlite/tests/
H A Dbug35336.phpt16 $a->query ("CREATE TABLE test (a integer primary key, b text)");
19 $rez = $a->query ("SELECT * FROM test")->fetchAll(PDO::FETCH_CLASS, 'EEE');
/PHP-7.4/ext/sqlite3/tests/
H A Dsqlite3_16_select_no_results.phpt2 SQLite3::query SELECT with no results
15 $results = $db->query("SELECT * FROM test ORDER BY id ASC");

Completed in 33 milliseconds

12345678910>>...19