PHP Classes

File: dictionary.sql

Recommend this page to a friend!
  Classes of David Frendin   lib_dictionary   dictionary.sql   Download  
File: dictionary.sql
Role: Auxiliary data
Content type: text/plain
Description: sql table structure
Class: lib_dictionary
Check text spelling with a dictionary in MySQL
Author: By
Last change:
Date: 16 years ago
Size: 281 bytes
 

Contents

Class file image 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;