Home
last modified time | relevance | path

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

12345678910>>...19

/PHP-7.3/ext/mysqli/tests/
H A D074.phpt16 $result = $mysqli->query("SELECT @@autocommit");
20 $result = $mysqli->query("SELECT @@autocommit");
H A Dbug51647.phpt16 if ($res = $link->query('SHOW VARIABLES LIKE "have_ssl"')) {
19 if ($link->errno == 1064 && ($res = $link->query("SHOW VARIABLES"))) {
48 if (!$res = $link->query('SHOW STATUS like "Ssl_cipher"')) {
51 if ($res = $link->query("SHOW STATUS")) {
78 if (!$res = $link->query('SHOW STATUS like "Ssl_cipher"')) {
81 if ($res = $link->query("SHOW STATUS")) {
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 Dbug55283.phpt16 if ($res = $link->query('SHOW VARIABLES LIKE "have_ssl"')) {
19 if ($link->errno == 1064 && ($res = $link->query("SHOW VARIABLES"))) {
48 $r = $link->query("SHOW STATUS LIKE 'Ssl_cipher'");
56 $r2 = $link2->query("SHOW STATUS LIKE 'Ssl_cipher'");
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 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 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.3/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.3/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.3/ext/pdo_pgsql/tests/
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');
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)');
/PHP-7.3/ext/standard/tests/url/
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.3/ext/pdo_mysql/tests/
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 Dbug_61207.phpt2 PDO MySQL Bug #61207 (PDO::nextRowset() after a multi-statement query doesn't always work)
15 $db->query('DROP TABLE IF EXISTS test');
16 $db->query('create table `test`( `id` int )');
83 $db->query("DROP TABLE test");
H A Dbug_38546.phpt23 $query = "CREATE TABLE test(
29 $db->exec($query);
52 foreach ($db->query('SELECT * from test') as $row) {
78 foreach ($db->query('SELECT * from test') as $row) {
104 foreach ($db->query('SELECT * from test') as $row) {
131 foreach ($db->query('SELECT * from test') as $row) {
158 foreach ($db->query('SELECT * from test') as $row) {
185 foreach ($db->query('SELECT * from test') as $row) {
/PHP-7.3/ext/pdo_oci/tests/
H A Dpdo_oci_stream_2a.phpt17 $query = "begin execute immediate 'drop table pdo_oci_stream_2'; exception when others then if sqlc…
18 $stmt = $db->prepare($query);
21 $query = "create table pdo_oci_stream_2 (id number, data1 blob, data2 blob)";
22 $stmt = $db->prepare($query);
/PHP-7.3/ext/pdo/tests/
H A Dpdo_030.phpt52 function query($sql)
55 return parent::query($sql);
77 $stmt = $db->query('SELECT * FROM test');
108 PDODatabase::query()
/PHP-7.3/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");
H A Dsqlite3_04_update.phpt2 SQLite3::query UPDATE tests
19 $results = $db->query("SELECT * FROM test ORDER BY id ASC");
30 $results = $db->query("SELECT * FROM test ORDER BY id ASC");
H A Dsqlite3_05_delete.phpt2 SQLite3::query DELETE tests
19 $results = $db->query("SELECT * FROM test ORDER BY id ASC");
30 $results = $db->query("SELECT * FROM test ORDER BY id ASC");
/PHP-7.3/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');

Completed in 34 milliseconds

12345678910>>...19