Login   Register  
PHP Classes
elePHPant
Icontem

File: dictionary.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2007-05-14 16:16
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;