ceth
ceth

Reputation: 45325

Connect to SQL Server CE from Visual Studio

I have a program which I deploy to an emulator from Visual Studio. At first launch the program create a database on the emulator.

Is the any ability to connect to this database from my computer? I don't need a program code and I am searching for ready solution (VS tool or a separate utility).

Upvotes: 0

Views: 1823

Answers (2)

ctacke
ctacke

Reputation: 67198

The only tool I'm aware of that allows a desktop machine to connect to a SQL Compact database on a separate device is Primeworks' DataPortConsole. If you can pull it locally, then SQLCE Toolbox (see marc_s's answer) is a great tool.

EDIT

Not to be outdone by marc_s's fancy graphics, here's one of the DataPortConsole. :)

enter image description here

Upvotes: 1

marc_s
marc_s

Reputation: 755321

You can install the SQL Server CE Toolbox into Visual Studio and enjoy all its features!

Read this blog post on Erik EJ's web site on the very latest features of version 3.1

enter image description here

Upvotes: 4

Related Questions