sql server compact edition features

流过昼夜 提交于 2019-12-11 03:53:47

问题


Does anyone know where I can find a list of supported features for SQL Server Compact Edition? I am interested in using the new version with my web app but am trying to determine if it can do what I need? specifically I want to know if it can support views and stored procedures but the microsoft site was futile.

thanks in advance

Edit:

I looked at this SQL Server Compact Edition 3.5 but it was not helpful to me.


回答1:


SQL Server CE 4 does not support stored procedures, as you can read in this blog post by Scott Guthrie:

SQL CE is an embedded database – which makes it ideal for development and light-usage scenarios. For high-volume sites and applications you’ll probably want to migrate it to use SQL Server Express (which is free), SQL Server or SQL Azure. These servers enable much better scalability, more development features (including features like Stored Procedures – which aren’t supported with SQL CE), as well as more advanced data management capabilities.

This page has a complete list of the difference between CE and SQL Server. It says that both stored procedures and views are not supported by CE.



来源:https://stackoverflow.com/questions/3285417/sql-server-compact-edition-features

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