Home
last modified time | relevance | path

Searched refs:id (Results 226 – 250 of 871) sorted by relevance

12345678910>>...35

/PHP-7.3/ext/soap/interop/
H A Ddatabase_round2.sql18 id int(11) NOT NULL auto_increment,
24 PRIMARY KEY (id)
33 id int(11) NOT NULL auto_increment,
43 PRIMARY KEY (id)
/PHP-7.3/ext/oci8/tests/
H A Dfetch_all1.phpt14 "create table fetch_all_tab (id number, value number)",
15 "insert into fetch_all_tab (id, value) values (1,1)",
16 "insert into fetch_all_tab (id, value) values (1,1)",
17 "insert into fetch_all_tab (id, value) values (1,1)"
H A Dcursor_bind_err.phpt17 "create table cursor_bind_err_tab (id number, value number)",
18 "insert into cursor_bind_err_tab (id, value) values (1,1)",
19 "insert into cursor_bind_err_tab (id, value) values (1,1)",
20 "insert into cursor_bind_err_tab (id, value) values (1,1)",
H A Dpecl_bug8816.phpt13 $create_1 = "CREATE TABLE t1 (id INTEGER, l1 LONG)";
14 $create_2 = "CREATE TABLE t2 (id INTEGER, l2 LONG)";
51 t1.id = t2.id
52 ORDER BY t1.id ASC
H A Dlob_011.phpt15 ".$schema.$table_name." (id, blob)
30 ".$schema.$table_name." (id, blob)
43 $select_sql = "SELECT blob FROM ".$schema.$table_name." WHERE id = 1";
49 $select_sql = "SELECT blob FROM ".$schema.$table_name." WHERE id = 2 FOR UPDATE";
60 $select_sql = "SELECT blob FROM ".$schema.$table_name." WHERE id = 2 FOR UPDATE";
/PHP-7.3/ext/pdo_odbc/tests/
H A Dmax_columns.phpt13 if (false === $db->exec('CREATE TABLE TEST (id INT NOT NULL PRIMARY KEY, data varchar(max))')) {
14 if (false === $db->exec('CREATE TABLE TEST (id INT NOT NULL PRIMARY KEY, data longtext)')) {
15 if (false === $db->exec('CREATE TABLE TEST (id INT NOT NULL PRIMARY KEY, data CLOB)')) {
33 foreach ($db->query('SELECT id, data from TEST') as $row) {
36 echo "Failed on size $row[id]:\n";
/PHP-7.3/ext/pdo/tests/
H A Dbug_34630.phpt21 $db->exec('CREATE TABLE test (id int NOT NULL PRIMARY KEY, val BLOB)');
23 $db->exec('CREATE TABLE test (id int NOT NULL PRIMARY KEY, val VARCHAR(256))');
36 …$insert = $db->prepare("insert into test (id, val) values (1, EMPTY_BLOB()) RETURNING val INTO :bl…
38 $insert = $db->prepare("insert into test (id, val) values (1, :blob)");
52 ["id"]=>
H A Dbug_39656.phpt21 $db->exec("CREATE TABLE test (id INTEGER NOT NULL PRIMARY KEY, usr VARCHAR( 256 ) NOT NULL)");
22 $db->exec("INSERT INTO test (id, usr) VALUES (1, 'user')");
24 $stmt = $db->prepare("SELECT * FROM test WHERE id = ?");
40 ["id"]=>
H A Dpdo_031.phpt24 $db->exec('CREATE TABLE test(id INT NOT NULL PRIMARY KEY, val VARCHAR(10), val2 VARCHAR(16))');
48 | |-10 [id]
52 | |-20 [id]
56 |-30 [id]
/PHP-7.3/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_blobfromsteam.phpt56 $sql = sprintf('CREATE TABLE test(id INT, label BLOB) ENGINE=%s', PDO_MYSQL_TEST_ENGINE);
59 if (!$stmt = $db->prepare('INSERT INTO test(id, label) VALUES (?, ?)')) {
71 $id = 1;
72 $stmt->bindParam(1, $id);
86 $stmt2 = $db->query('SELECT id, label FROM test WHERE id = 1');
98 $stmt = $db->prepare('INSERT INTO test(id, label) VALUES (?, ?)');
99 $stmt->bindParam(1, $id);
104 $stmt2 = $db->query('SELECT id, label FROM test WHERE id = 1');
/PHP-7.3/ext/session/tests/
H A Dsession_module_name_variation2.phpt20 function read($id) { }
21 function write($id, $session_data) { }
22 function destroy($id) { }
H A Dsession_id_error2.phpt11 * Prototype : string session_id([string $id])
12 * Description : Get and/or set the current session id
38 Warning: session_id(): Cannot change session id when session is active in %s on line %d
/PHP-7.3/ext/sqlite3/tests/
H A Dbug66550.phpt12 $db->exec('CREATE TABLE foo (id INTEGER, bar STRING)');
14 $stmt = $db->prepare('SELECT bar FROM foo WHERE id=:id');
H A Dsqlite3_11_numrows.phpt19 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
22 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'a')"));
23 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
26 $results = $db->query("SELECT * FROM test ORDER BY id ASC");
H A Dsqlite3_24_last_insert_rowid.phpt12 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
15 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'a')"));
17 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
H A Dsqlite3result_numcolumns_error.phpt12 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
15 var_dump($db->exec('INSERT INTO test (time, id) VALUES(2, 1)'));
18 $result = $db->query('SELECT id FROM test');
/PHP-7.3/ext/pdo_oci/tests/
H A Dpdo_oci_stream_2a.phpt21 $query = "create table pdo_oci_stream_2 (id number, data1 blob, data2 blob)";
25 function do_insert($db, $id, $data1, $data2)
28 …$stmt = $db->prepare("insert into pdo_oci_stream_2 (id, data1, data2) values (:id, empty_blob(), e…
29 $stmt->bindParam(':id', $id);
/PHP-7.3/ext/tidy/tests/
H A D012.phpt51 ["id"]=>
72 ["id"]=>
96 ["id"]=>
119 ["id"]=>
144 ["id"]=>
185 ["id"]=>
224 ["id"]=>
269 ["id"]=>
328 ["id"]=>
367 ["id"]=>
[all …]
/PHP-7.3/ext/mysqli/tests/
H A Dbug42378.phpt25 $sql = sprintf("CREATE TABLE test(id INT AUTO_INCREMENT PRIMARY KEY, col1 %s) ENGINE=%s",
38 $sql = sprintf("INSERT INTO test(id, col1) VALUES (%d, %f)",
168 test_format($link, 'id AS order_by_col, FORMAT(col1, 0)', 'test', 'id', $expected, 120);
173 test_format($link, 'id AS order_by_col, FORMAT(col1, 0)', 'test', 'id', $expected, 140);
178 test_format($link, 'id AS order_by_col, FORMAT(col1, 0)', 'test', 'id', $expected, 160);
191 id AS order_by_col, FORMAT(col1, 0)
193 id AS order_by_col, FORMAT(col1, 0)
195 id AS order_by_col, FORMAT(col1, 0)
H A Dmysqli_connect_twice.phpt18 …printf("[002] Cannot determine thread id, test will fail, [%d] %s\n", mysqli_errno($link), mysqli_…
27 …printf("[005] Expecting new connection and new thread id. Old thread id %d, new thread id %d\n", $…
43 …printf("[008] Cannot determine thread id, test will fail, [%d] %s\n", mysqli_errno($link), mysqli_…
52 …printf("[011] Expecting new connection and new thread id. Old thread id %d, new thread id %d\n", $…
H A Dbug49442.phpt36 …if (!mysqli_query($link, 'CREATE TABLE test(id INT, label CHAR(1), PRIMARY KEY(id)) ENGINE=' . $en…
51 if (!$res = mysqli_query($link, "SELECT * FROM test ORDER BY id"))
92 if (!$res = mysqli_query($link, "SELECT * FROM test ORDER BY id"))
97 if (($row['id'] != $rows[$i]['id']) || ($row['label'] != $rows[$i]['label'])) {
113 ["id"]=>
119 ["id"]=>
125 ["id"]=>
/PHP-7.3/ext/pdo_firebird/tests/
H A Dbug_72931.phpt9 $C->exec('create table tablea (id integer)');
10 $S = $C->prepare('insert into tablea (id) values (1) returning id');
/PHP-7.3/ext/dom/
H A Dnode.c1324 zval *id; in PHP_FUNCTION() local
1352 zval *id; in PHP_FUNCTION() local
1413 zval *id; in PHP_FUNCTION() local
1434 zval *id; in PHP_FUNCTION() local
1456 zval *id; in PHP_FUNCTION() local
1519 zval *id; in PHP_FUNCTION() local
1570 zval *id; in PHP_FUNCTION() local
1603 zval *id; in PHP_FUNCTION() local
1673 zval *id; in dom_canonicalization() local
1865 zval *id; in PHP_METHOD() local
[all …]
/PHP-7.3/ext/standard/tests/array/
H A Darray_column_object_cast.phpt10 function __toString() { return 'id'; }
26 'id' => $value,
31 'id' => 3245,
/PHP-7.3/Zend/tests/
H A Dbug39297.phpt34 $id = 'Test';
38 $root[$id] = $child;
40 var_dump(compareByRef($root[$id], $child));

Completed in 51 milliseconds

12345678910>>...35