If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > InnoDB and Full-text Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-09-03, 13:09
ravishankar ravishankar is offline
Registered User
 
Join Date: Sep 2003
Posts: 26
InnoDB and Full-text Search

Hi All,
Please note that as per mysql manual the Full-text Search is not supported in innodb.
we are in the process of porting our application to innodb table types from existng table types of myisam and in our application we have made use of MySQL Full-text Search .
If any one of you know any work around for this problem ,please suggest us .

Thanking you all in advance:

-Ravi
Reply With Quote
  #2 (permalink)  
Old 10-09-03, 18:32
omiossec omiossec is offline
Registered User
 
Join Date: Jan 2003
Location: Paris, France
Posts: 320
You can always mixe innodb table and myisam on one table to use with Full text search
__________________
Olivier Miossec
--
http://www.lasso-developpeur.net/
--
Reply With Quote
  #3 (permalink)  
Old 10-09-03, 20:20
ravishankar ravishankar is offline
Registered User
 
Join Date: Sep 2003
Posts: 26
Thanks for the reply:
If I am not wrong in understanding your reply then you are saying that I can have tables of myisam and innodb in one database ,that is ok.
But my problem is that i have to change all the table from myisam to innodb to maintain refrential integrity between these table.
-Ravi


Quote:
Originally posted by omiossec
You can always mixe innodb table and myisam on one table to use with Full text search
Reply With Quote
  #4 (permalink)  
Old 10-09-03, 20:29
bstjean bstjean is offline
Registered User
 
Join Date: Sep 2002
Location: Montreal, Canada
Posts: 219
Re: InnoDB and Full-text Search

Quote:
Originally posted by ravishankar
Hi All,
Please note that as per mysql manual the Full-text Search is not supported in innodb.
we are in the process of porting our application to innodb table types from existng table types of myisam and in our application we have made use of MySQL Full-text Search .
If any one of you know any work around for this problem ,please suggest us .

Thanking you all in advance:

-Ravi
Or you can parse the strings with your application and store the words in the database. That's what we did for our app (and we needed to be portable across databases so we had no choice) and it works fine.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On