column type popularity

This commit is contained in:
Marc Delisle
2002-04-15 13:13:30 +00:00
parent 9148f4c95d
commit 3ad0eac00f
2 changed files with 9 additions and 4 deletions

View File

@@ -207,9 +207,13 @@ $cfgRepeatCells = 100; // repeat header names every X cells? (0
/**
* MySQL settings
*/
// Column types
// Column types;
// varchar, tinyint, text and date are listed first, based on estimated popularity
$cfgColumnTypes = array(
'VARCHAR',
'TINYINT',
'TEXT',
'DATE',
'SMALLINT',
'MEDIUMINT',
'INT',
@@ -217,16 +221,13 @@ $cfgColumnTypes = array(
'FLOAT',
'DOUBLE',
'DECIMAL',
'DATE',
'DATETIME',
'TIMESTAMP',
'TIME',
'YEAR',
'CHAR',
'VARCHAR',
'TINYBLOB',
'TINYTEXT',
'TEXT',
'BLOB',
'MEDIUMBLOB',
'MEDIUMTEXT',