Alternatives to SQLite? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T06:01:00Z http://stackoverflow.com/feeds/question/417917 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/417917/alternatives-to-sqlite 8 Alternatives to SQLite? Orion Edwards 2009-01-06T20:11:01Z 2009-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#417941 3 Answer by artificialidiot for Alternatives to SQLite? artificialidiot 2009-01-06T20:15:54Z 2009-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#417945 1 Answer by BobbyShaftoe for Alternatives to SQLite? BobbyShaftoe 2009-01-06T20:16:53Z 2009-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#417978 3 Answer by CMS for Alternatives to SQLite? CMS 2009-01-06T20:24:45Z 2009-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#418011 2 Answer by Andrew Lewis for Alternatives to SQLite? Andrew Lewis 2009-01-06T20:32:51Z 2009-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#418018 3 Answer by arul for Alternatives to SQLite? arul 2009-01-06T20:34:03Z 2009-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#418025 0 Answer by dacracot for Alternatives to SQLite? dacracot 2009-01-06T20:35:20Z 2009-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#418042 2 Answer by le dorfier for Alternatives to SQLite? le dorfier 2009-01-06T20:40:42Z 2009-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#418083 10 Answer by Karthik Hariharan for Alternatives to SQLite? Karthik Hariharan 2009-01-06T20:50:26Z 2009-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#418144 1 Answer by MusiGenesis for Alternatives to SQLite? MusiGenesis 2009-01-06T21:00:48Z 2009-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#418837 3 Answer by tanathos for Alternatives to SQLite? tanathos 2009-01-07T01:13:30Z 2009-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>