SQL CE Max Length

徘徊边缘 提交于 2019-12-01 15:40:19

问题


I need to store articles in an application for WP7. I just want to use a database so I can query by unread articles, etc, etc.

I've run into one big problem with SQL CE in Mango-- there seems to be a limit of 4000 characters, and my article is 4200. And that isn't even the biggest one.

How can I get around this limit, if at all? If not, will I have to use a different database or possibly just write stories to IsolatedStorage and manage the file references in the database?


回答1:


The 4000 byte limit is imposed on varchar fields.

If you want more then you'll need ot use ntext.

See the list of supported types at http://msdn.microsoft.com/en-us/library/ms172424(SQL.110).aspx




回答2:


In Sql Compact 3.5, there was an ntext data type that was not limited to 4k bytes (like nvarchar).



来源:https://stackoverflow.com/questions/6736881/sql-ce-max-length

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!