why ?

If you're a new user of AppGini, feel free to ask general usage questions, or look for answers here.
Post Reply
pasbonte
Veteran Member
Posts: 162
Joined: 2013-02-06 09:49

why ?

Post by pasbonte » 2016-11-02 18:32

I have:
MySQL said: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

why ?

MERCI !

grimblefritz
AppGini Super Hero
AppGini Super Hero
Posts: 336
Joined: 2015-12-23 16:52

Re: why ?

Post by grimblefritz » 2016-11-03 12:12

Difficult to say without seeing the table structure. You might want to post that.

If I remember correctly, for InnoDB tables the row limit is actually more like 16K (ie, the size in the error message may be incorrect.)

A common cause is the use of very large VARCHAR fields. If you have them, change them to TEXT. If you're relying on VARCHAR to limit the maximum input, you'll need to switch to doing that during the POST, or via jquery if you wish to monitor it realtime.

Post Reply