View Single Post
  #2  
Old 10-14-2007, 05:41 PM
Winston Winston is offline
Administrator
 
Join Date: Jul 2005
Posts: 46
Default

Sorry for the delayed response, but to answer the questions, tdSearch adds a FULLTEXT key to the table to be searched, and tdSearchStats uses its own table. Neither of these would corrupt data, but of course you should backup beforehand. The table to be searched should have the following form:
Code:
CREATE TABLE search_data ( title varchar(255) NOT NULL, description text NOT NULL, keywords text NOT NULL, url varchar(255) NOT NULL, size varchar(255) NOT NULL, date varchar(255) NOT NULL ) TYPE=MyISAM;
Reply With Quote