Recommend this page to a friend! | Stumble It! | Bookmark in del.icio.us |
Classes of David Frendin | > | lib_dictionary | > | dictionary.sql | > | Download | ||
|
Download |
-- -- Structure -- CREATE TABLE `dictionary` ( `word` tinytext NOT NULL, `metaphone` tinytext NOT NULL, `len` tinyint(3) NOT NULL, `metaphoner` tinytext NOT NULL, KEY `Index` (`metaphone`(20),`metaphoner`(20)), KEY `Index2` (`word`(10)) ) TYPE=MyISAM; |