Access SQL Server 2005 Everywhere/Mobile Edition data

G

Guest

Hi

In Visual Studio .NET 2003 you could use SqlCeDataReader to access SQL
Server 2000 Mobile data.

What is the equivalent of that in Visual Studio .NET 2005 and what class
must I import to find it? I am using C#.

Does anyone know of a good site that might also have info about .NET 2
Compact Framework apps and SQL Server 2005 Everywhere edition?

Thanks in advance!

Regards
Edward
 
G

Ginny Caughey [MVP]

Edward,

It's still SqlCeDataReader. There's also SqlCeResultSet which inherits from
SqlCeDataReader and provides a scrollable updatable cursor - very useful.
Both are in the System.Data.SqlServerCe namespace. Here's a good starting
point for info: http://www.microsoft.com/sql/editions/compact/default.mspx
Note that the database has been renamed to SQL Server 2005 Compact.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top