MySQL Forums
Forum List  »  Newbie

fulltext index problem
Posted by: vu the cuong
Date: July 16, 2005 06:16PM

I studying mysql 4.1 according to ebook of Sybex: mastering MySQL 4. I have the following prob related to fulltext index:

I created a table as follow:
CREATE TABLE ft(f1 VARCHAR(255),f2 TEXT,f3 BLOB,f4 INT);

and then I add fulltext index as follow:
ALTER TABLE ft ADD FULLTEXT (f1,f2);

But error occured:
Error Code : 1214
The used table type doesn't support FULLTEXT indexes
(0 ms taken)


Could anyone tell me where is my wrong?
many thanks

Options: ReplyQuote


Subject
Written By
Posted
fulltext index problem
July 16, 2005 06:16PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.