Reputation: 1
I am very new to MySQL. I want to store 1000 or more values into a table of single column. After saving 100 values I got this:
mysql 139 storage engine error..
Upvotes: 0
Views: 171
Reputation: 1957
Are you using the InnoDB or MyISAM engine? This error normally means that you exceeded the allowed row length. Please post your table structure here.
You can do that from a command line client by issuing the command:
SHOW CREATE TABLE yourtable;
Upvotes: 1