Home
last modified time | relevance | path

Searched refs:id (Results 376 – 400 of 800) sorted by relevance

1...<<11121314151617181920>>...32

/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_next_result.phpt61 …ext_result($link, "SELECT 1 AS a; SELECT 1 AS a, 2 AS b; SELECT id FROM test ORDER BY id LIMIT 3",…
62 …func_test_mysqli_next_result($link, "SELECT 1 AS a; INSERT INTO test(id, label) VALUES (100, 'y');…
63 func_test_mysqli_next_result($link, "DELETE FROM test WHERE id >= 100; SELECT 1 AS a; ", 11, 1);
H A Dmysqli_pam_sha256_public_key_option.phpt78 !$link->query("CREATE TABLE test (id INT)") ||
79 !$link->query("INSERT INTO test(id) VALUES (1), (2), (3)"))
106 if (!$res = $link->query("SELECT id FROM test WHERE id = 1"))
113 if ($row['id'] != 1) {
114 printf("[005] Expecting 1 got %s/'%s'", gettype($row['id']), $row['id']);
H A Dmysqli_stmt_get_result_metadata_fetch_field.phpt24 …!mysqli_stmt_prepare($stmt, "SELECT id, label, id + 1 as _id, concat(label, '_') ___label FROM te…
71 string(2) "id"
73 string(2) "id"
H A Dmysqli_stmt_reset.phpt36 if (true !== ($tmp = mysqli_stmt_prepare($stmt, 'SELECT id FROM test')))
46 $id = null;
47 if (!mysqli_stmt_bind_result($stmt, $id))
53 var_dump($id);
61 …if (!mysqli_query($link, "CREATE TABLE test(id INT NOT NULL AUTO_INCREMENT, label BLOB, PRIMARY KE…
H A Dmysqli_pconn_kill.phpt39 …printf("[004] Cannot find thread id of the regular link, [%d] %s\n", mysqli_errno($link), mysqli_e…
42 …printf("[005] Cannot find thread id of the persistent link, [%d] %s\n", mysqli_errno($link), mysql…
70 if (!$res3 = @mysqli_query($plink, 'SELECT id FROM test ORDER BY id LIMIT 1')) {
83 if (!$res4 = mysqli_query($link, 'SELECT id FROM test ORDER BY id LIMIT 1'))
H A Dmysqli_query.phpt89 … if (!is_object($res = mysqli_query($link, "SELECT id FROM test ORDER BY id", MYSQLI_USE_RESULT)))
93 …if (!is_object($res = mysqli_query($link, "SELECT id FROM test ORDER BY id", MYSQLI_STORE_RESULT)))
97 if (false !== ($res = @mysqli_query($link, "SELECT id FROM test ORDER BY id", 1234)))
105 if (false !== ($tmp = mysqli_query($link, "SELECT id FROM test")))
H A Dmysqli_fetch_object.phpt25 … if (!$res = mysqli_query($link, "SELECT id AS ID, label FROM test AS TEST ORDER BY id LIMIT 5")) {
93 if (!$res = mysqli_query($link, "SELECT id AS ID, label FROM test AS TEST")) {
100 if (!$res = mysqli_query($link, "SELECT id AS ID, label FROM test AS TEST ORDER BY id LIMIT 5"))
117 if (!$res = mysqli_query($link, "SELECT id AS ID, label FROM test AS TEST ORDER BY id LIMIT 5"))
H A Dmysqli_fetch_all.phpt25 if (!$res = mysqli_query($link, "SELECT * FROM test ORDER BY id LIMIT 2")) {
33 if (!$res = mysqli_query($link, "SELECT * FROM test ORDER BY id LIMIT 2")) {
41 if (!$res = mysqli_query($link, "SELECT * FROM test ORDER BY id LIMIT 2")) {
101 …(!mysqli_query($link, $sql = sprintf("CREATE TABLE test(id INT NOT NULL, label %s, PRIMARY KEY(id)…
125 if (!$res = mysqli_query($link, "SELECT id, label FROM test")) {
369 ["id"]=>
380 ["id"]=>
392 ["id"]=>
399 ["id"]=>
412 ["id"]=>
[all …]
/PHP-7.4/ext/dom/
H A Ddocumentfragment.c113 zval *id; in PHP_METHOD() local
121 id = ZEND_THIS; in PHP_METHOD()
126 DOM_GET_OBJ(nodep, id, xmlNodePtr, intern); in PHP_METHOD()
/PHP-7.4/ext/pdo/tests/
H A Dbug_65946.phpt17 $db->exec('CREATE TABLE test(id int)');
31 …$sql = "select id from (select a.*, rownum rnum from (SELECT * FROM test) a where rownum <= :limit…
47 ["id"]=>
/PHP-7.4/ext/oci8/tests/
H A Dbug26133.phpt14 "create table bug26133_tab (id number, value number)",
21 $ora_sql = "INSERT INTO bug26133_tab (id, value) VALUES (1,'1') RETURNING ROWID INTO :v_rowid ";
H A Dbug43497.phpt91 $stmt = oci_parse($c, "create table bug43497_tab (id number primary key, xml xmltype)");
104 for ($id = 1; $id <= 100; $id++) {
119 …$stmt = oci_parse($c, "insert into bug43497_tab(id, xml) values (:id, sys.xmltype.createxml(:xml))…
120 oci_bind_by_name($stmt, ":id", $id);
H A Ddrcp_functions.inc7 $create_sql = "CREATE TABLE DRCPTEST (id NUMBER, name VARCHAR2(10), dept VARCHAR2(10))";
32 $update_stmt ="Update drcptest set dept ='NEWDEPT' where id = 105";
40 $sel_stmt="select dept from drcptest where id=105";
44 echo "The value of DEPT for id 105 is ".oci_result($s2,1)."\n";
H A Dlob_002.phpt17 "create table lob_002_tab (id number, b1 BLOB)",
22 $statement = oci_parse($c, "insert into lob_002_tab (id, b1) values (1, empty_blob()) returning b1 …
39 $select_sql = "select b1 from lob_002_tab where id = 1";
/PHP-7.4/ext/pdo_oci/tests/
H A Dpdo_oci_stream_1.phpt23 "create table pdo_oci_stream_1_tab (id number, data clob)",
34 insert into pdo_oci_stream_1_tab (id,data) values (1, 'abcdefghijklmnopqrstuvwxyz');
35 insert into pdo_oci_stream_1_tab (id,data) values (2, lob1);
40 $s = $dbh->prepare("select data from pdo_oci_stream_1_tab where id = 1");
58 $s = $dbh->prepare("select data from pdo_oci_stream_1_tab where id = 2");
/PHP-7.4/ext/pdo_mysql/tests/
H A Dbug_42499.phpt30 $db->exec("CREATE TABLE test(id CHAR(1)); INSERT INTO test(id) VALUES ('a')");
32 $stmt = $db->query('SELECT id AS _id FROM test');
36 $db->exec('SELECT id FROM test');
38 $db->exec("INSERT INTO test(id) VALUES ('b')");
H A Dpdo_mysql_stmt_getcolumnmeta.phpt25 $stmt = $db->prepare('SELECT id FROM test ORDER BY id ASC');
56 $stmt = $db->prepare('SELECT id FROM test ORDER BY id ASC');
73 …$sql = sprintf('CREATE TABLE test(id INT, label %s) ENGINE=%s', $sql_type, MySQLPDOTest::getTableE…
79 if (!$db->exec(sprintf("INSERT INTO test(id, label) VALUES (1, '%s')", $value))) {
85 $stmt = $db->prepare('SELECT id, label FROM test');
239 $db->exec('INSERT INTO test(id, label) VALUES (1, 2)');
240 $stmt = $db->query('SELECT id, label FROM test');
260 $db->exec('INSERT INTO test(id) VALUES (1)');
261 $stmt = $db->query('SELECT id FROM test');
281 $db->exec('INSERT INTO test(id, label1, label2) VALUES (1, 2, 3)');
[all …]
/PHP-7.4/ext/simplexml/tests/
H A D002.phpt11 <sxe id="elem1">
37 ["id"]=>
H A D010.phpt15 <sxe id="elem1">
37 ["id"]=>
H A Dsxe_001.phpt14 <sxe id="elem1">
36 ["id"]=>
/PHP-7.4/ext/opcache/tests/
H A Dbug77275.phpt24 $id = $b->get('a', 'b', 'c');
26 $id = $rec['a'];
/PHP-7.4/ext/phar/tests/files/
H A Dpear2coverage.phar1063 $id = $this->getFileId($file);
1068 c.files_id=' . $id . ' AND t.id=c.tests_id' ;
1100 $id = $this->getTestId($test);
1206 $id = $this->getFileId($path);
1243 $id = $this->getFileId($path);
1271 return $id[0];
1285 return $id[0];
1298 $this->db->exec('DELETE FROM tests WHERE id=' . $id);
1301 return $id;
1325 return $id;
[all …]
/PHP-7.4/win32/
H A Dcodepage.h36 DWORD id; member
53 PW32CP const struct php_win32_cp *php_win32_cp_get_by_id(DWORD id);
54 PW32CP const struct php_win32_cp *php_win32_cp_set_by_id(DWORD id);
106 ret = php_win32_cp_conv_to_w(acp->id, acp->to_w_fl, in, in_len, out_len); in php_win32_cp_conv_any_to_w()
/PHP-7.4/ext/session/tests/
H A Dsession_regenerate_id_cookie.phpt18 * Description : Update the current session id with a newly generated one
49 $id = session_id();
52 var_dump($id !== session_id());
/PHP-7.4/ext/sqlite3/tests/
H A Dsqlite3_39_toggleExtended.phpt10 $db->query("CREATE TABLE dog ( id INTEGER PRIMARY KEY, name TEXT, annoying INTEGER )");
34 Warning: SQLite3::query(): Unable to execute statement: UNIQUE constraint failed: dog.id in %s on l…
38 Warning: SQLite3::query(): Unable to execute statement: UNIQUE constraint failed: dog.id in %s on l…

Completed in 41 milliseconds

1...<<11121314151617181920>>...32