Home
last modified time | relevance | path

Searched refs:INT (Results 1 – 25 of 188) sorted by relevance

12345678

/PHP-8.1/ext/mysqli/tests/
H A Dmysqli_stmt_bind_param_type_juggling.phpt88 bind_twice($link, $engine, 'INT', 'INT', 'i', 'i', 1, 2, 20);
94 bind_twice($link, $engine, 'INT', 'INT', 'i', 'i', '1', '2', 50);
101 1) col1 INT, col2 CHAR(1)
107 col1 INT, col2 INT
114 col1 INT, COL2 CHAR(1)
117 bind_twice($link, $engine, 'INT', 'CHAR(1)', 'i', 's', 1, 'a', 70);
H A Dmysqli_fetch_field_flags.phpt53 'INT DEFAULT NULL' => 'NUM',
54 'INT NOT NULL' => 'NOT_NULL NO_DEFAULT_VALUE NUM',
55 'INT NOT NULL DEFAULT 1' => 'NOT_NULL NUM',
56 'INT UNSIGNED DEFAULT NULL' => 'UNSIGNED NUM',
57 'INT UNSIGNED NOT NULL' => 'NOT_NULL UNSIGNED NO_DEFAULT_VALUE NUM',
58 'INT UNSIGNED NOT NULL DEFAULT 1' => 'NOT_NULL UNSIGNED NUM',
59 'INT UNSIGNED ZEROFILL DEFAULT NULL' => 'UNSIGNED ZEROFILL NUM',
115 $create = sprintf('CREATE TABLE test(id INT, col1 %s)', $column_def);
145 case 'INT UNSIGNED NOT NULL':
146 case 'INT NOT NULL':
[all …]
H A Dbug35103.phpt31 echo "BIG INT SIGNED, TEST\n";
44 echo "BIG INT UNSIGNED TEST\n";
67 BIG INT SIGNED, TEST
77 BIG INT UNSIGNED TEST
H A Dmysqli_stmt_insert_id.phpt43 (!mysqli_stmt_prepare($stmt, "ALTER TABLE test MODIFY id INT NOT NULL AUTO_INCREMENT") ||
47 mysqli_query($link, "ALTER TABLE test MODIFY id INT NOT NULL AUTO_INCREMENT");
/PHP-8.1/ext/pgsql/tests/
H A Dpg_update_001.phpt16 pg_query($conn, 'CREATE TABLE foo (id INT, id2 INT)');
17 pg_query($conn, 'CREATE TABLE phptests.foo (id INT, id2 INT)');
H A Dpg_select_001.phpt16 pg_query($conn, 'CREATE TABLE phptests.foo (id INT, id2 INT)');
20 pg_query($conn, 'CREATE TABLE phptests.bar (id4 INT, id3 INT)');
H A Dpg_delete_001.phpt16 pg_query($conn, 'CREATE TABLE foo (id INT, id2 INT)');
17 pg_query($conn, 'CREATE TABLE phptests.foo (id INT, id2 INT)');
H A Dpg_meta_data_001.phpt16 pg_query($conn, 'CREATE TABLE phptests.foo (id INT, id2 INT)');
18 pg_query($conn, 'CREATE TABLE foo (id INT, id3 INT)');
H A Dpg_insert_001.phpt15 pg_query($conn, 'CREATE TABLE phptests.foo (id INT, id2 INT)');
H A Dbug47199.phpt17 pg_query($dbh, "CREATE TABLE $tbl_name (null_field INT, not_null_field INT NOT NULL)");
/PHP-8.1/ext/pdo/tests/
H A Dbug_38394.phpt19 $db->exec("CREATE TABLE test (a INT, b INT, c INT)");
H A Dbug_73234.phpt27 $sql = 'CREATE TABLE test(id INT NULL)';
30 $sql = 'CREATE TABLE test(id INT)';
/PHP-8.1/ext/pdo_odbc/tests/
H A Dmax_columns.phpt16 if (false === $db->exec('CREATE TABLE TEST (id INT NOT NULL PRIMARY KEY, data varchar(max))')) {
17 if (false === $db->exec('CREATE TABLE TEST (id INT NOT NULL PRIMARY KEY, data longtext)')) {
18 if (false === $db->exec('CREATE TABLE TEST (id INT NOT NULL PRIMARY KEY, data CLOB)')) {
/PHP-8.1/ext/sqlite3/tests/
H A Dbug73068.phpt15 $db->exec("CREATE TABLE IF NOT EXISTS t1(a INT UNIQUE, b INT)");
H A Dbug73333.phpt10 $db->exec('CREATE TABLE foo (bar INT)');
/PHP-8.1/ext/pdo_sqlite/tests/
H A Dpdo_sqlite_open_flags.phpt13 var_dump($db->exec('CREATE TABLE test1 (id INT);'));
17 var_dump($db->exec('CREATE TABLE test2 (id INT);'));
H A Dpdo_sqlite_filename_uri.phpt13 var_dump($db->exec('CREATE TABLE test1 (id INT);'));
20 var_dump($db->exec('CREATE TABLE test2 (id INT);'));
/PHP-8.1/ext/pdo_mysql/tests/
H A Dbug_44454.phpt23 $db->exec('CREATE TABLE test(a INT, b INT, UNIQUE KEY idx_ab (a, b))');
39 $db->exec('CREATE TABLE test(a INT, b INT, UNIQUE KEY idx_ab (a, b))');
H A Dpdo_mysql_attr_init_command.phpt25 $create = sprintf('CREATE TABLE %s(id INT)', $table);
41 string(58) "CREATE TABLE test_%s(id INT)"
H A Dtable.inc7 $db->exec('CREATE TABLE test(id INT, label CHAR(1), PRIMARY KEY(id)) ENGINE=' . $engine);
H A Dpdo_mysql_stmt_getcolumnmeta.phpt66 …$sql = sprintf('CREATE TABLE test(id INT, label %s) ENGINE=%s', $sql_type, MySQLPDOTest::getTableE…
154 test_meta($db, 100, 'INT', -2147483648, 'LONG', PDO::PARAM_INT);
155 test_meta($db, 110, 'INT UNSIGNED', 4294967295, 'LONG', PDO::PARAM_INT);
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…
H A Dbug77289.phpt19 $pdo->exec("CREATE TEMPORARY TABLE bug77289 (x INT)");
/PHP-8.1/Zend/tests/type_declarations/union_types/redundant_types/
H A Dduplicate_type.phpt6 function test(): int|INT {
/PHP-8.1/ext/oci8/tests/
H A Dfield_funcs2.phpt23 "C11" => "INT",
63 C11 INT: precision 38, scale 0
/PHP-8.1/ext/odbc/tests/
H A Dbug80152.phpt12 odbc_exec($conn,"CREATE TABLE bug80152 (id INT, name CHAR(24))");

Completed in 33 milliseconds

12345678