Home
last modified time | relevance | path

Searched refs:query (Results 226 – 250 of 576) sorted by relevance

12345678910>>...24

/php-src/ext/pdo/tests/
H A Dbug_64172.phpt23 $db->query('SELECT * FROM bad_table');
30 $stmt = $db->query('SELECT * FROM test64172');
55 Warning: PDO::query(): SQLSTATE[%s]: %s
H A Dpdo_012.phpt24 $stmt = $db->query($SELECT, PDO::FETCH_NUM);
40 $stmt = $db->query($SELECT, PDO::FETCH_CLASS, TestClass::class);
45 $stmt = $db->query($SELECT, PDO::FETCH_NUM);
/php-src/ext/pdo_dblib/tests/
H A Dstringify_uniqueidentifier.phpt34 $stmt = $db->query($sql);
44 $stmt = $db->query($sql);
58 $stmt = $db->query($sql);
H A Dbug_69592.phpt23 $stmt = $db->query($sql);
33 $stmt = $db->query($sql);
/php-src/ext/pdo_sqlite/tests/
H A Dbug78192.phpt9 $connection->query('CREATE TABLE user (id INTEGER PRIMARY KEY NOT NULL, name VARCHAR(255) NOT NULL)…
21 $connection->query('ALTER TABLE user ADD new_col VARCHAR(255)');
H A Dbug_42589.phpt9 $options = $db->query('PRAGMA compile_options')->fetchAll(PDO::FETCH_COLUMN);
20 $result = $db->query('SELECT * FROM test_42589 t1 LEFT JOIN test_42589 t2 ON t1.field1 = t2.field1'…
/php-src/ext/sqlite3/tests/
H A Dsqlite3_13_skip_all_cleanup.phpt2 SQLite3::query Skip all cleanup
19 $results = $db->query("SELECT * FROM test ORDER BY id ASC");
H A Dsqlite3_18_changes.phpt18 echo "UPDATE query\n";
34 UPDATE query
H A Dsqlite3_36_create_collation.phpt20 $defaultSort = $db->query('SELECT s FROM t ORDER BY s'); //memcmp() sort
21 $naturalSort = $db->query('SELECT s FROM t ORDER BY s COLLATE NAT'); //strnatcmp() sort
H A Dsqlite3_03_insert.phpt2 SQLite3::query INSERT tests
19 $results = $db->query("SELECT * FROM test ORDER BY id ASC");
/php-src/ext/standard/tests/url/
H A Dparse_url_basic_011.phpt23 ["query"]=>
46 ["query"]=>
/php-src/ext/mysqli/tests/
H A Dbug54221.phpt24 $query = "$create;$create;$create;";
25 if ($link->multi_query($query)) {
H A Dbug79084_collision.phpt25 $res = $link->query($sql);
33 $res = $link->query($sql);
H A Dmysqli_poll.phpt61 printf("[%03d + 2] Can fetch resultset although no query has been run!\n", $offset);
66 … printf("[%03d + 4] Cannot fetch and no error set - non resultset query (no SELECT)!\n", $offset);
80 // Connections on which no query has been sent - 1
95 // Connections on which no query has been sent - 2
103 // Connections on which no query has been sent - 3
H A Dmysqli_insert_id_variation.phpt17 $link->query("DROP TABLE IF EXISTS test_insert_id_var");
18 $link->query("CREATE TABLE test_insert_id_var (id INT auto_increment, PRIMARY KEY (id))");
19 $link->query("INSERT INTO test_insert_id_var VALUES (null)");
88 $link->query("DROP TABLE IF EXISTS test_insert_id_var");
H A Dps_cursor_multiple_result_sets.phpt15 $db->query('DROP PROCEDURE IF EXISTS testPs');
16 $db->query(<<<'SQL'
79 $link->query('DROP PROCEDURE IF EXISTS testPs');
H A Dmysqli_insert_packet_overflow.phpt90 $query = sprintf("%s%s%s", $query_prefix, $blob, $query_postfix);
92 if (!mysqli_query($link, $query))
93 …printf("[014] max_allowed_packet = %d, strlen(query) = %d, [%d] %s\n", $max_allowed_packet, strlen…
121 $link->query('DROP TABLE test__mysqli_insert_packet_overflow');
/php-src/ext/dom/tests/
H A Dgh12455.phpt20 $elements = $xpath->query('//b:z');
25 $elements = $xpath->query('//*[name()="b:z"]');
/php-src/ext/pdo_mysql/tests/
H A Dpdo_mysql_param_str_natl.phpt23 var_dump($db->query('SELECT * from test_param_str_natl'));
24 foreach ($db->query('SELECT * from test_param_str_natl') AS $row) {
H A Dpdo_mysql_stmt_rowcount.phpt20 if (0 !== ($tmp = $db->query("SELECT id FROM {$table} WHERE 1 = 0")->rowCount()))
23 if (1 !== ($tmp = $db->query("SELECT id FROM {$table} WHERE id = 1")->rowCount()))
H A Dpdo_mysql_stmt_fetchobject.phpt12 $query = "SELECT '', NULL, \"\" FROM DUAL";
13 $stmt = $db->prepare($query);
32 $query = "SELECT id, '', NULL, \"\" FROM {$table} ORDER BY id ASC LIMIT 3";
33 $stmt = $db->prepare($query);
H A Dnative_types.phpt22 var_dump($db->query('SELECT * FROM test_native_types')->fetchAll(PDO::FETCH_ASSOC));
25 var_dump($db->query('SELECT * FROM test_native_types')->fetchAll(PDO::FETCH_ASSOC));
H A Dpdomysql_002.phpt23 foreach ($db->query('SELECT name FROM pdomysql_002') as $row) {
33 $db->query('DROP TABLE pdomysql_002');
/php-src/ext/pdo_firebird/tests/
H A Dtransaction_isolation_level_behavior.phpt24 $dbh_other->query("CREATE TABLE {$table} (val INT)");
39 $r = $dbh->query("SELECT * FROM {$table}");
62 $r = $dbh->query("SELECT * FROM {$table}");
85 $r = $dbh->query("SELECT * FROM {$table}");
115 $r = $dbh->query("SELECT * FROM {$table}");
/php-src/ext/pdo_pgsql/tests/
H A Dbug72633.phpt21 $db->query('CREATE TABLE test72633 (id SERIAL NOT NULL, field1 VARCHAR(10))');
41 $db->query('DROP TABLE IF EXISTS test72633');

Completed in 32 milliseconds

12345678910>>...24