What tools does everyone use to work with the SQl CE 4? With 3.5 we could open it in SQL Server Studio Management Studio but this is no longer an option it seems... and doing it in VS only allows you to execute one command at a time.

Thanks, Mark

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Try this: http://visualstudiogallery.msdn.microsoft.com/0e313dfd-be80-4afb-b5e9-6e74d369f7a1/

link|improve this answer
I have that already, it doesn't let you execute in batch. I tried using both a GO statement and ; – mservidio Jul 26 '11 at 3:40
Basically I just want to be able to run multiple insert statements, and it doesn't seem to even let me do that... – mservidio Jul 26 '11 at 3:41
1  
This is a bug that has been fixed in the latest release 2.0.0.3 - let me know if you still have issues. – ErikEJ Jul 26 '11 at 8:56
1  
If you have VS Premium or higher, you can use the builtin query tool part of the Data menu. – ErikEJ Jul 26 '11 at 8:58
@ErikEJ - I have the latest 2.2.0.3. I just realized though that it works with GO statements. The "GO" is case sensitive though. If it's not capitalized it will through a query parsing error. – mservidio Jul 27 '11 at 0:18
show 1 more comment
feedback

This is another example of inconsistency among MS tools - a new version of SQL Server CE is here few months but rest of the MS tools will not support it till next release. Especially with management studio this is huge failure.

As I know MS provides only one tool to work with SQL Server CE 4: WebMatrix

For Visual Studio you can use mentioned SQL Server Compact Tools and you can check its author blog for list of other tools.

link|improve this answer
Yes, it's really annoying. I think I'm just going to revert to using SQL CE 3.5. The one new feature I really wanted was that I think it now supports auto incremented key with Entity Framework. I'll stick with generating my own keys for now, or using GUID (which I really don't want). – mservidio Jul 26 '11 at 14:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.