Choosing a desktop database - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T20:31:38Zhttp://stackoverflow.com/feeds/question/48486http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/48486/choosing-a-desktop-database3Choosing a desktop databaseJonathan Rauch2008-09-07T14:45:38Z2008-09-17T10:52:16Z
<p>Hi,</p>
<p>I'm looking for a desktop/embedded database. The two candidates I'm looking at are
Microsoft SQL Server CE and Oracle Lite. If anyone's used both of these products, it'd be great if you could compare them. I haven't been able to find any comparisons online.</p>
<p>The backend DB is Oracle10g.</p>
<p>Thanks!</p>
<p>Update: Clarification, the business need is a client-server app with offline functionality (hence the need for a local data store on the client)</p>
http://stackoverflow.com/questions/48486/choosing-a-desktop-database/48488#484888Answer by Nir for Choosing a desktop databaseNir2008-09-07T14:50:55Z2008-09-07T14:50:55Z<p>If the backend database is Oracle 10g it will probably be easier for you to use Oracle Lite - that way you don't have to use two completely different SQL dialects in the same project.</p>
<p>BTW, In my product I use SQLite as the desktop database </p>
http://stackoverflow.com/questions/48486/choosing-a-desktop-database/48492#484924Answer by Rob Stevenson-Leggett for Choosing a desktop databaseRob Stevenson-Leggett2008-09-07T14:56:44Z2008-09-09T14:37:50Z<p>I also used SQLite as a desktop database. It's lightning quick and doesn't need a seperate process or any prior installation. All you need is a library to access the data as part of your code.</p>
<p>In light of your clarification I'd evaluate both OracleXE and Oracle 10g Lite before the others. Stick with the same tech, SQL/Oracle have some funny disagreements about SQL syntax and datatypes. I imagine you'd get the same issue with SQLite.</p>
http://stackoverflow.com/questions/48486/choosing-a-desktop-database/48495#484950Answer by Brad Bruce for Choosing a desktop databaseBrad Bruce2008-09-07T14:59:06Z2008-09-07T14:59:06Z<p>You might want to look at Oracle XE. I cannot remember all of the differences, but O-Lite didn't fit my project needs. Oracle XE is a very good database for local development.</p>
<p>Brad</p>
http://stackoverflow.com/questions/48486/choosing-a-desktop-database/48514#485143Answer by FlySwat for Choosing a desktop databaseFlySwat2008-09-07T15:14:24Z2008-09-07T15:14:24Z<p>Perhaps I'm not fully understanding the need here. You are developing against 10g, but for your own test/dev environment you want a more lightweight database?</p>
<p>Or, are you developing an application that synchs with 10g database when online, but when offline uses a local store?</p>
<p>In both cases, I'd recommend staying with Oracle only because <strong>it will simplify your code.</strong></p>
<p>In the first case, I'd wonder why you don't have a 10g QA machine somewhere that all the developers can connect to.</p>
http://stackoverflow.com/questions/48486/choosing-a-desktop-database/48536#485364Answer by JC Grubbs for Choosing a desktop databaseJC Grubbs2008-09-07T15:54:30Z2008-09-07T15:54:30Z<p>I'll second the vote for SQLite. I'm not sure what you're trying to accomplish but if you're doing any sort of local storage with syncing SQLite is a good choice. It has very widespread adoption and a lot of community support.</p>
http://stackoverflow.com/questions/48486/choosing-a-desktop-database/51115#511150Answer by aku for Choosing a desktop databaseaku2008-09-09T02:10:36Z2008-09-09T02:10:36Z<p>As @Nir mentioned, it's better to have homogeneous environment. However if you decide to not use Oracle Light, I would highly recommend you to take a look at <a href="http://www.firebirdsql.org/" rel="nofollow">Firebird</a>. It's one of best choices for desktop database scenarios.</p>
http://stackoverflow.com/questions/48486/choosing-a-desktop-database/81964#819641Answer by Alejandro Mezcua for Choosing a desktop databaseAlejandro Mezcua2008-09-17T10:52:16Z2008-09-17T10:52:16Z<p>One advantage you have with SQL Server CE is <a href="http://www.microsoft.com/sql/editions/compact/default.mspx" rel="nofollow">that it is free</a> and you can use the <a href="http://msdn.microsoft.com/en-us/sync/bb906054.aspx" rel="nofollow">Sync Framework</a> to syncronize it with any ADO.NET accesible database.</p>
<p>Also, the same SQL CE file is usable from the PC and mobile devices, and if you develop your application using .NET, you can use the same code for the desktop and the mobile device without changes.</p>