Sunday, 11 September 2016

sql server ce 4 - Using SQL Compact 4 in Visual C# 2010 express




It is posible to use SQL Server Compact 4 inside Visual C# 2010 Express? I tried reinstall it many times (with Web Platform Installer and without it) but I still cannot see option for SQL Compct 4 in Data Source selection window.



Visual C# 2010 Express



But what is strange, I can see it in Visual Web Developer 2010 Express.



Visual Web Developer 2010 Express



Is there any way how I can access to version 4 from Visual C# 2010 Express?



Answer



Version 4.0 only shows for Web Projects, not for desktop projects - as stated here: http://blogs.msdn.com/b/sqlservercompact/archive/2011/03/15/sql-server-compact-4-0-tooling-support-in-visual-studio-2010-sp1-and-visual-web-developer-express-2010-sp1.aspx


No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...