Alternatives to SQLite? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T06:01:00Zhttp://stackoverflow.com/feeds/question/417917http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/417917/alternatives-to-sqlite8Alternatives to SQLite?Orion Edwards2009-01-06T20:11:01Z2009-01-07T01:13:30Z
<p>I've used SQLite before as a datastore for a C# winforms application, and it was great, however, it does possess many shortcomings.</p>
<p>I'm aware Microsoft have a product called SQL Server Compact Edition - does this work in the same way SQLite does, and if so, is it any good?</p>
<p>Are there any other alternatives?</p>
<h3>Update</h3>
<p>By alternatives I mean in-process data storage libraries which do not require any separate install packages or standalone executables</p>
<h3>Update 2</h3>
<p>Many people have been asking about the perceived shortcomings of SQLite.<br />
I'd like to repeat that on the whole I had a great experience with it, and would strongly recommend it, but a couple of things bugged me</p>
<ol>
<li>Complete lack of type safety.</li>
<li>You need to explicitly batch multiple sql statements into transactions or the performance is abysmal.</li>
<li>I can't remember exactly, but from memory some particular kinds of joins and subselects just fail</li>
<li><strong>No support for ALTER TABLE</strong>. Ouch</li>
</ol>
http://stackoverflow.com/questions/417917/alternatives-to-sqlite/417941#4179413Answer by artificialidiot for Alternatives to SQLite?artificialidiot2009-01-06T20:15:54Z2009-01-06T20:15:54Z<p>There is berkeley db library. <a href="http://www.oracle.com/database/berkeley-db/index.html" rel="nofollow">http://www.oracle.com/database/berkeley-db/index.html</a></p>
http://stackoverflow.com/questions/417917/alternatives-to-sqlite/417945#4179451Answer by BobbyShaftoe for Alternatives to SQLite?BobbyShaftoe2009-01-06T20:16:53Z2009-01-06T20:16:53Z<p>I have been really impressed with VistaDB</p>
<p><a href="http://www.vistadb.net/" rel="nofollow">http://www.vistadb.net/</a></p>
http://stackoverflow.com/questions/417917/alternatives-to-sqlite/417978#4179783Answer by CMS for Alternatives to SQLite?CMS2009-01-06T20:24:45Z2009-01-06T20:24:45Z<p><a href="http://www.microsoft.com/Sqlserver/2005/en/us/compact.aspx" rel="nofollow">SQL Server Compact</a> can be a good choice, it's free, easy-to-use.</p>
<p>I like it very much since it's Linq-To-SQL Compatible...</p>
http://stackoverflow.com/questions/417917/alternatives-to-sqlite/418011#4180112Answer by Andrew Lewis for Alternatives to SQLite?Andrew Lewis2009-01-06T20:32:51Z2009-01-06T20:32:51Z<p>There are many alternatives, depending on the amount of data, and what sort of features you need. I've used all of these and been happy with them:</p>
<p>SQL Express 2005/8</p>
<p>MS Access</p>
<p>MySQL</p>
<p>Flat files (csv, txt)</p>
<p>xml files</p>
<p>serialize objects in xml files.</p>
http://stackoverflow.com/questions/417917/alternatives-to-sqlite/418018#4180183Answer by arul for Alternatives to SQLite?arul2009-01-06T20:34:03Z2009-01-06T20:34:03Z<p>I've been well satisfied with the embedded version of <a href="http://www.firebirdsql.org/dotnetfirebird/download/index.html" rel="nofollow">Firebird</a>. </p>
http://stackoverflow.com/questions/417917/alternatives-to-sqlite/418025#4180250Answer by dacracot for Alternatives to SQLite?dacracot2009-01-06T20:35:20Z2009-01-06T20:35:20Z<p>Try <a href="http://www.oracle.com/technology/software/products/database/xe/index.html" rel="nofollow">Oracle 10g XE</a>. It is free. It comes with a browser based management tool that is quite intuitive.</p>
http://stackoverflow.com/questions/417917/alternatives-to-sqlite/418042#4180422Answer by le dorfier for Alternatives to SQLite?le dorfier2009-01-06T20:40:42Z2009-01-06T20:40:42Z<p>Be careful of SQL Express - it hasn't feature-stabilized yet (I can't speak to reliable-stable). Every new version is different to some degree. At least SQLite is what it is. And so is Microsft dumb-old Microsoft Access.</p>
http://stackoverflow.com/questions/417917/alternatives-to-sqlite/418083#41808310Answer by Karthik Hariharan for Alternatives to SQLite?Karthik Hariharan2009-01-06T20:50:26Z2009-01-06T21:00:27Z<p>My company, <a href="http://telligent.com" rel="nofollow">Telligent</a>, has seen success with <a href="http://vistadb.com" rel="nofollow">VistaDB</a>. We ship it with our lightweight CMS product, <a href="http://graffiticms.com" rel="nofollow">Graffiti</a>. It's nice because it allows easy, XCOPY based deployment. I'm sure it would work well for Winforms as well.</p>
<p>Also our product works well with MySQL and SQL Server 2000-2008. That says something about the ability to easily adapt your data access code that currently uses VistaDB to a larger scale database if/when you need it.</p>
http://stackoverflow.com/questions/417917/alternatives-to-sqlite/418144#4181441Answer by MusiGenesis for Alternatives to SQLite?MusiGenesis2009-01-06T21:00:48Z2009-01-06T21:00:48Z<p>SQL CE desktop edition is good and fast. Databases are a single file, which is good.</p>
<p>Oracle Lite is also good and fast on the desktop. Databases are two files, which isn't that big a deal. Distribution is a pain in the butt, though. The installer is around 500-600 MB, even though the total size of the files you actually need on a client machine is less than 5 MB (typical Oracle). You have to do some work to figure out what DLLs you need and deploy them.</p>
<p>I'd go with SQL CE.</p>
http://stackoverflow.com/questions/417917/alternatives-to-sqlite/418837#4188373Answer by tanathos for Alternatives to SQLite?tanathos2009-01-07T01:13:30Z2009-01-07T01:13:30Z<p>Take a look to this comparison:
<a href="http://dotnetperls.com/Content/SQLite-Versus-SQLCE.aspx" rel="nofollow">http://dotnetperls.com/Content/SQLite-Versus-SQLCE.aspx</a></p>