While inserting rows into SQL Server CE in WP7 I’m getting a SQLCeException that says
The table definition or the row size exceeds the maximum row size of
8060 bytes.
What is the way to increase the row size?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
SQL Server has a hard and fixed system limit at 8K for a page size.
There is NO WAY to increase that.
The solution will be to re-architect your design to work around this.