Maximum Number of Fields in a Form
Sometimes while creating custom fields, you might have faced an error message that looks like this:
Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs.
What does it mean?
Solution:
To add more fields to the system, you can do some changes.
- Change certain fields to types such as “Text,” “Small Text,” “Text Editor,” or “Code” to optimize space usage. In MySQL, BLOB and TEXT columns count differently towards the row-size limit, consuming additional bytes separately from the main row. Thus, converting these fields to the mentioned types can help free up space, potentially allowing for the addition of more fields.
- When creating fields, consider setting a smaller value in the “Length” property, which defaults to 140. This property dictates the length of VARCHAR columns and allocates space accordingly. Therefore, a smaller length value enables the addition of more fields due to the reduced space allocation per field.