/PHP-5.3/ext/mysqli/tests/ |
H A D | mysqli_fetch_field_flags.phpt | 53 'INT DEFAULT NULL' => 'NUM', 55 'INT NOT NULL DEFAULT 1' => 'NOT_NULL NUM', 56 'INT UNSIGNED DEFAULT NULL' => 'UNSIGNED NUM', 58 'INT UNSIGNED NOT NULL DEFAULT 1' => 'NOT_NULL UNSIGNED NUM', 59 'INT UNSIGNED ZEROFILL DEFAULT NULL' => 'UNSIGNED ZEROFILL NUM', 61 'CHAR(1) DEFAULT NULL' => '', 64 'VARBINARY(127) DEFAULT NULL' => 'BINARY', 75 'SET("one", "two") NOT NULL DEFAULT "one"' => 'NOT_NULL SET', 78 'ENUM("one", "two") NOT NULL DEFAULT "one"' => 'NOT_NULL ENUM', 81 'MEDIUMINT UNIQUE DEFAULT 1' => 'UNIQUE_KEY NUM PART_KEY', [all …]
|
H A D | bug35759.phpt | 16 $create = "CREATE TABLE test (a0 MEDIUMBLOB NOT NULL DEFAULT ''"; 19 $create .= ", a$i MEDIUMBLOB NOT NULL DEFAULT ''";
|
H A D | mysqli_real_escape_string_eucjpms.phpt | 38 KEY(id)) ENGINE=' . $engine . " DEFAULT CHARSET=eucjpms")) {
|
H A D | mysqli_real_escape_string_euckr.phpt | 37 KEY(id)) ENGINE=' . $engine . " DEFAULT CHARSET=euckr")) {
|
H A D | mysqli_real_escape_string_gb2312.phpt | 38 KEY(id)) ENGINE=' . $engine . " DEFAULT CHARSET=gb2312")) {
|
H A D | mysqli_real_escape_string_gbk.phpt | 40 KEY(id)) ENGINE=' . $engine . " DEFAULT CHARSET=gbk")) {
|
H A D | mysqli_real_escape_string_big5.phpt | 38 KEY(id)) ENGINE=' . $engine . " DEFAULT CHARSET=big5")) {
|
H A D | mysqli_fetch_assoc_bit.phpt | 48 …REATE TABLE test(id BIGINT, bit_value BIT(%d) NOT NULL, bit_null BIT(%d) DEFAULT NULL) ENGINE="%s"…
|
H A D | mysqli_fetch_field_types.phpt | 20 $create = sprintf("CREATE TABLE test(id %s) DEFAULT CHARSET %s", $sql_type, $default_charset);
|
H A D | mysqli_stmt_get_result_bit.phpt | 51 …LE test(id BIGINT UNSIGNED, bit_value BIT(%d) NOT NULL, bit_null BIT(%d) DEFAULT NULL) ENGINE="%s"…
|
H A D | mysqli_fetch_field.phpt | 63 if (!mysqli_query($link, "CREATE TABLE test(id INT NOT NULL DEFAULT 1)"))
|
H A D | mysqli_stmt_bind_result_bit.phpt | 47 …REATE TABLE test(id BIGINT, bit_value BIT(%d) NOT NULL, bit_null BIT(%d) DEFAULT NULL) ENGINE = %s…
|
/PHP-5.3/ext/spl/tests/ |
H A D | spl_pq_top_basic.phpt | 15 echo "EXTR DEFAULT",PHP_EOL; 31 EXTR DEFAULT
|
/PHP-5.3/ext/pgsql/tests/ |
H A D | 80_bug42783.phpt | 17 pg_query("CREATE TABLE php_test (id SERIAL PRIMARY KEY, time TIMESTAMP NOT NULL DEFAULT now())");
|
/PHP-5.3/ext/interbase/tests/ |
H A D | ibase_drop_db_001.phpt | 14 sprintf("CREATE SCHEMA '%s' USER '%s' PASSWORD '%s' DEFAULT CHARACTER SET %s",$file,
|
H A D | interbase.inc | 18 sprintf("CREATE SCHEMA '%s' USER '%s' PASSWORD '%s' DEFAULT CHARACTER SET %s",$test_base,
|
/PHP-5.3/ext/pdo_firebird/tests/ |
H A D | execute.phpt | 19 datetime TIMESTAMP DEFAULT '2000-02-12' NOT NULL)");
|
/PHP-5.3/ext/intl/doc/ |
H A D | Tutorial.txt | 130 DEFAULT 136 DEFAULT 141 DEFAULT 146 DEFAULT 154 DEFAULT 159 DEFAULT 164 DEFAULT 169 DEFAULT
|
H A D | formatter_api.php | 59 const DEFAULT = 'UNUM_DEFAULT'; define in NumberFormatter
|
/PHP-5.3/ext/pdo_mysql/tests/ |
H A D | bug53551.phpt | 18 `count` bigint(20) unsigned NOT NULL DEFAULT '0'
|
H A D | pdo_mysql_stmt_bindparam_types.phpt | 157 pdo_mysql_stmt_bindparam_types($db, 56, "ENUM('yes', 'no') DEFAULT 'yes'", "no"); 158 pdo_mysql_stmt_bindparam_types($db, 57, "SET('yes', 'no') DEFAULT 'yes'", "no");
|
H A D | pdo_mysql_types.phpt | 169 test_type($db, 620, "ENUM('yes', 'no') DEFAULT 'yes'", 'no'); 170 test_type($db, 630, "SET('yes', 'no') DEFAULT 'yes'", 'no');
|
H A D | pdo_mysql_exec_ddl.phpt | 57 exec_and_count(9, $db, 'ALTER TABLE pdo_exec_ddl ALTER id SET DEFAULT 1', 0);
|
H A D | mysql_pdo_test.inc | 153 if ('InnoDB' == $row['engine'] && ('YES' == $row['support'] || 'DEFAULT' == $row['support']))
|
/PHP-5.3/ext/sqlite/libsqlite/src/ |
H A D | parse.y | 175 carg ::= DEFAULT STRING(X). {sqliteAddDefaultValue(pParse,&X,0);} in STRING() 176 carg ::= DEFAULT ID(X). {sqliteAddDefaultValue(pParse,&X,0);} in ID() 177 carg ::= DEFAULT INTEGER(X). {sqliteAddDefaultValue(pParse,&X,0);} in INTEGER() 178 carg ::= DEFAULT PLUS INTEGER(X). {sqliteAddDefaultValue(pParse,&X,0);} in INTEGER() 179 carg ::= DEFAULT MINUS INTEGER(X). {sqliteAddDefaultValue(pParse,&X,1);} in INTEGER() 180 carg ::= DEFAULT FLOAT(X). {sqliteAddDefaultValue(pParse,&X,0);} in FLOAT() 181 carg ::= DEFAULT PLUS FLOAT(X). {sqliteAddDefaultValue(pParse,&X,0);} in FLOAT() 182 carg ::= DEFAULT MINUS FLOAT(X). {sqliteAddDefaultValue(pParse,&X,1);} in FLOAT() 183 carg ::= DEFAULT NULL. 215 refact(A) ::= SET DEFAULT. { A = OE_SetDflt; }
|