Hi - I want to write a web based app with a database backend for my wife who works in the recruitment industry. I was wondering whether I should use InnoDB or MyISAM for my tables.
MyISAM seems to have the ability to do a full text search while innodb does not. Innodb has the ability to maintain referential integrity while MyISAM does not.
Which of these is more important? I was thinking that i could maintain referential integrity in myisam by checking that foreign key values being inserted really do exist via my php code. However, there seems to be no workaround for the lack of full text search in InnoDB.
What are you thoughts? Please note that I really am new to databases - this will be my first ever database project. I'll post my database design seperately for feedback
