vote up 0 vote down star

Looking for performance vs. ease of use comparisons between the two

Hopefully some real world examples too ?

This is for a desktop Winforms/C# app using SQL Server Compact 3.5 and .net 2.0

flag

78% accept rate
question does not make sense. What are you comparing? – Mitch Wheat Jul 30 at 0:20

2 Answers

vote up 0 vote down check

Some guy did a benchmark of the 2 which you can find here http://www.pocketpcdn.com/forum/viewtopic.php?t=11003

link|flag
vote up 0 vote down

Why would you even consider using OleDB?

link|flag
I've some generic db code uses the interfaces e.g. IConnection, ICommand etc. to connect to any db would like to reuse if possible – Kumar Jul 30 at 11:46
That's not a problem. You can do that with SqlServerCe. It plugs very nicely into ADO.NET: you have SqlCeConnection (which inherits from DbConnection and implements IDbConnection), SqlCeCommand, SqlCeDataReader, ... They all implement the correct interfaces. – Tommy Carlier Jul 30 at 12:14
That works but requires the extra lines of code The generic solution reads the provider from the config and works as is – Kumar Aug 3 at 13:01

Your Answer

Get an OpenID
or

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