I have made a mistake when designing my DB. I have created a table with more than 40 text cells. Now I have a nearly finished application (cakePHP) and I recognized that InnoDB tables have these limitations the first time while testing with larger data...
I read tons of forum threads and websites and all I find is the limit of InnoDB and that one 'solution' of this can be using MyIsam tables. But I can't find any information of the limits of row-size of MyIsam or if it has none. Can anybody answer me that?
I think I know most about the other differences between those two and I think don't need the features of InnoDB. I am only searching for an easy way to solve my problem of the row-sizes...
My second question: If I have to split my table in 4-6 tables (vertical partitioning) with less columns, does anybody know if cakePHP has a good way in dealing with this? Logically it should be one data-storage. Every SELECT statement has to fetch all the data from all the split tables. The tables will all have a 1to1-relation.