/PHP-8.0/ext/pgsql/tests/ |
H A D | pg_update_001.phpt | 14 pg_query('CREATE TABLE foo (id INT, id2 INT)'); 15 pg_query('CREATE TABLE phptests.foo (id INT, id2 INT)');
|
H A D | pg_select_001.phpt | 14 pg_query('CREATE TABLE phptests.foo (id INT, id2 INT)'); 18 pg_query('CREATE TABLE phptests.bar (id4 INT, id3 INT)');
|
H A D | pg_delete_001.phpt | 14 pg_query('CREATE TABLE foo (id INT, id2 INT)'); 15 pg_query('CREATE TABLE phptests.foo (id INT, id2 INT)');
|
H A D | pg_meta_data_001.phpt | 14 pg_query('CREATE TABLE phptests.foo (id INT, id2 INT)'); 16 pg_query('CREATE TABLE foo (id INT, id3 INT)');
|
H A D | pg_insert_001.phpt | 13 pg_query('CREATE TABLE phptests.foo (id INT, id2 INT)');
|
H A D | bug47199.phpt | 15 pg_query("CREATE TABLE $tbl_name (null_field INT, not_null_field INT NOT NULL)");
|
/PHP-8.0/ext/mysqli/tests/ |
H A D | mysqli_stmt_bind_param_type_juggling.phpt | 87 bind_twice($link, $engine, 'INT', 'INT', 'i', 'i', 1, 2, 20); 93 bind_twice($link, $engine, 'INT', 'INT', 'i', 'i', '1', '2', 50); 100 1) col1 INT, col2 CHAR(1) 106 col1 INT, col2 INT 113 col1 INT, COL2 CHAR(1) 116 bind_twice($link, $engine, 'INT', 'CHAR(1)', 'i', 's', 1, 'a', 70);
|
H A D | mysqli_fetch_field_flags.phpt | 52 'INT DEFAULT NULL' => 'NUM', 53 'INT NOT NULL' => 'NOT_NULL NO_DEFAULT_VALUE NUM', 54 'INT NOT NULL DEFAULT 1' => 'NOT_NULL NUM', 55 'INT UNSIGNED DEFAULT NULL' => 'UNSIGNED NUM', 56 'INT UNSIGNED NOT NULL' => 'NOT_NULL UNSIGNED NO_DEFAULT_VALUE NUM', 57 'INT UNSIGNED NOT NULL DEFAULT 1' => 'NOT_NULL UNSIGNED NUM', 58 'INT UNSIGNED ZEROFILL DEFAULT NULL' => 'UNSIGNED ZEROFILL NUM', 114 $create = sprintf('CREATE TABLE test(id INT, col1 %s)', $column_def); 144 case 'INT UNSIGNED NOT NULL': 145 case 'INT NOT NULL': [all …]
|
H A D | bug35103.phpt | 30 echo "BIG INT SIGNED, TEST\n"; 43 echo "BIG INT UNSIGNED TEST\n"; 66 BIG INT SIGNED, TEST 76 BIG INT UNSIGNED TEST
|
H A D | mysqli_stmt_insert_id.phpt | 42 (!mysqli_stmt_prepare($stmt, "ALTER TABLE test MODIFY id INT NOT NULL AUTO_INCREMENT") || 46 mysqli_query($link, "ALTER TABLE test MODIFY id INT NOT NULL AUTO_INCREMENT");
|
/PHP-8.0/ext/pdo/tests/ |
H A D | bug_38394.phpt | 18 $db->exec("CREATE TABLE test (a INT, b INT, c INT)");
|
/PHP-8.0/ext/pdo_odbc/tests/ |
H A D | max_columns.phpt | 15 if (false === $db->exec('CREATE TABLE TEST (id INT NOT NULL PRIMARY KEY, data varchar(max))')) { 16 if (false === $db->exec('CREATE TABLE TEST (id INT NOT NULL PRIMARY KEY, data longtext)')) { 17 if (false === $db->exec('CREATE TABLE TEST (id INT NOT NULL PRIMARY KEY, data CLOB)')) {
|
/PHP-8.0/ext/sqlite3/tests/ |
H A D | bug73068.phpt | 14 $db->exec("CREATE TABLE IF NOT EXISTS t1(a INT UNIQUE, b INT)");
|
H A D | bug73333.phpt | 12 $db->exec('CREATE TABLE foo (bar INT)');
|
/PHP-8.0/ext/pdo_sqlite/tests/ |
H A D | pdo_sqlite_open_flags.phpt | 13 var_dump($db->exec('CREATE TABLE test1 (id INT);')); 17 var_dump($db->exec('CREATE TABLE test2 (id INT);'));
|
H A D | pdo_sqlite_lastinsertid.phpt | 9 $db->query('CREATE TABLE IF NOT EXISTS foo (id INT AUTO INCREMENT, name TEXT)');
|
/PHP-8.0/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_attr_init_command.phpt | 24 $create = sprintf('CREATE TABLE %s(id INT)', $table); 39 string(58) "CREATE TABLE test_%s(id INT)"
|
H A D | bug_44454.phpt | 21 $db->exec('CREATE TABLE test(a INT, b INT, UNIQUE KEY idx_ab (a, b))'); 37 $db->exec('CREATE TABLE test(a INT, b INT, UNIQUE KEY idx_ab (a, b))');
|
H A D | table.inc | 7 $db->exec('CREATE TABLE test(id INT, label CHAR(1), PRIMARY KEY(id)) ENGINE=' . $engine);
|
H A D | bug77289.phpt | 18 $pdo->exec("CREATE TEMPORARY TABLE bug77289 (x INT)");
|
H A D | pdo_mysql_stmt_getcolumnmeta.phpt | 65 …$sql = sprintf('CREATE TABLE test(id INT, label %s) ENGINE=%s', $sql_type, MySQLPDOTest::getTableE… 154 … test_meta($db, 100, 'INT', -2147483648, 'LONG', ($is_mysqlnd) ? PDO::PARAM_INT : PDO::PARAM_STR); 155 …test_meta($db, 110, 'INT UNSIGNED', 4294967295, 'LONG', ($is_mysqlnd) ? PDO::PARAM_INT : PDO::PARA… 229 …$sql = sprintf('CREATE TABLE test(id INT, label INT UNIQUE) ENGINE = %s', MySQLPDOTest::getTableEn… 250 …$sql = sprintf('CREATE TABLE test(id INT PRIMARY KEY NOT NULL AUTO_INCREMENT) ENGINE = %s', MySQLP… 271 …$sql = sprintf('CREATE TABLE test(id INT, label1 INT, label2 INT, INDEX idx1(label1, label2)) ENGI…
|
/PHP-8.0/Zend/tests/type_declarations/union_types/redundant_types/ |
H A D | duplicate_type.phpt | 6 function test(): int|INT {
|
/PHP-8.0/ext/oci8/tests/ |
H A D | field_funcs2.phpt | 23 "C11" => "INT", 63 C11 INT: precision 38, scale 0
|
/PHP-8.0/ext/odbc/tests/ |
H A D | bug80152.phpt | 10 odbc_exec($conn,"CREATE TABLE bug80152 (id INT, name CHAR(24))");
|
H A D | bug80147.phpt | 11 odbc_exec($conn, "CREATE TABLE bug80147 (id INT, whatever VARBINARY(50))");
|