up vote 0 down vote favorite
share [g+] share [fb]

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

link|improve this question

question does not make sense. What are you comparing? – Mitch Wheat Jul 30 '09 at 0:20
feedback

2 Answers

up vote 1 down vote accepted

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

link|improve this answer
feedback

Why would you even consider using OleDB?

link|improve this answer
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 '09 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 '09 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 '09 at 13:01
feedback

Your Answer

 
or
required, but never shown

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