Home
last modified time | relevance | path

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

123456789

/PHP-8.3/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.phpt51 'INT DEFAULT NULL' => 'NUM',
52 'INT NOT NULL' => 'NOT_NULL NO_DEFAULT_VALUE NUM',
53 'INT NOT NULL DEFAULT 1' => 'NOT_NULL NUM',
54 'INT UNSIGNED DEFAULT NULL' => 'UNSIGNED NUM',
55 'INT UNSIGNED NOT NULL' => 'NOT_NULL UNSIGNED NO_DEFAULT_VALUE NUM',
56 'INT UNSIGNED NOT NULL DEFAULT 1' => 'NOT_NULL UNSIGNED NUM',
57 'INT UNSIGNED ZEROFILL DEFAULT NULL' => 'UNSIGNED ZEROFILL NUM',
113 $create = sprintf('CREATE TABLE test(id INT, col1 %s)', $column_def);
143 case 'INT UNSIGNED NOT NULL':
144 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.phpt41 (!mysqli_stmt_prepare($stmt, "ALTER TABLE test MODIFY id INT NOT NULL AUTO_INCREMENT") ||
45 mysqli_query($link, "ALTER TABLE test MODIFY id INT NOT NULL AUTO_INCREMENT");
/PHP-8.3/ext/odbc/tests/
H A Dodbc_num_fields_001.phpt14 odbc_exec($conn, 'CREATE TABLE num_fields (foo INT, bar INT, baz INT)');
H A Dodbc_field_name_001.phpt14 odbc_exec($conn, 'CREATE TABLE field_name (foo INT, bar INT, baz INT)');
/PHP-8.3/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.3/ext/pdo_sqlite/tests/
H A Dpdo_sqlite_empty_filename.phpt11 var_dump($db->exec('CREATE TABLE test_sqlite_empty_filename (id INT);'));
16 var_dump($db->exec('CREATE TABLE test_sqlite_empty_filename (id INT);'));
H A Dpdo_sqlite_filename_uri.phpt11 var_dump($db->exec('CREATE TABLE test_sqlite_filename_uri (id INT);'));
23 var_dump($db->exec('CREATE TABLE test_sqlite_filename_uri (id INT);'));
30 var_dump($db->exec('CREATE TABLE test_sqlite_filename_uri_2 (id INT);'));
H A Dpdo_sqlite_open_flags.phpt13 var_dump($db->exec('CREATE TABLE test_sqlite_open_flags (id INT);'));
17 var_dump($db->exec('CREATE TABLE test_sqlite_open_flags_2 (id INT);'));
/PHP-8.3/ext/pdo/tests/
H A Dbug_38394.phpt19 $db->exec("CREATE TABLE test (a INT, b INT, c INT)");
H A Dbug_73234.phpt28 $sql = 'CREATE TABLE test(id INT NULL)';
31 $sql = 'CREATE TABLE test(id INT)';
/PHP-8.3/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.3/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.3/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);
/PHP-8.3/Zend/tests/type_declarations/union_types/redundant_types/
H A Dduplicate_type.phpt6 function test(): int|INT {
/PHP-8.3/ext/oci8/tests/
H A Dfield_funcs2.phpt27 "C11" => "INT",
67 C11 INT: precision 38, scale 0

Completed in 24 milliseconds

123456789