Row size too large (> 8126) can i just change InnoDB to MyISAM
问题 I have this error: Row size too large (> 8126). Changing some columns to TEXT or BLOB or using ROW_FORMAT=DYNAMIC or ROW_FORMAT=COMPRESSED may help. In current row format, BLOB prefix of 768 bytes is stored inline. To solve this can i just change InnoDB to MyISAM? 回答1: Yes, you could switch to MyISAM. But that is not necessarily a good idea: MyISAM does not support transactions MyISAM tables often need REPAIR after a crash An InnoDB table can handle more than 8KB per row. Apparently you ran