Made too large form and while saving information to database had following MySQL problem
"Row size too large (> 8126). Changing some columns to TEXT or BLOB or using ROW_FORMAT=DYNAMIC or ROW_FORMAT=COMPRESSED may help."
For me its not possible to make some columns to text or blob so I decided to split table in three parts.
My quess is that this needs 3 times "DB Save". The problem is that "DB save" saves everything. The question is how can I select which values are saved in each table. Primary key should be id for each table so information stays in order when updating in future.
"Row size too large (> 8126). Changing some columns to TEXT or BLOB or using ROW_FORMAT=DYNAMIC or ROW_FORMAT=COMPRESSED may help."
For me its not possible to make some columns to text or blob so I decided to split table in three parts.
My quess is that this needs 3 times "DB Save". The problem is that "DB save" saves everything. The question is how can I select which values are saved in each table. Primary key should be id for each table so information stays in order when updating in future.