vote up 29 vote down star
8

SQLite is a flat-file database and MySQL is a normal database. That's great but I'm not sure which is faster where or better for what? What are the pros and cons of each option?

flag

7  
SQLite is not a flat-file database, it stores data in structured files with indexes. A flat-file database would use "flat" files, e.g. fixed-record or CSV. – MarkR Jun 11 at 10:27

14 Answers

vote up 31 vote down check

SQLite is great for testing and prototyping, or for embedding in applications. MySQL is worthy of (large scale) production environments.

This site has guidance on when to use SQLite

Here is my personal summary:

SQLite:

  • easier to setup
  • great for temporary (testing databases)
  • great for rapid development
  • great for embedding in an application
  • not fit for production (in large scale)
  • doesn't have user management
  • doesn't have many performance features
  • doesn't scale well.

MySQL:

  • far more difficult/complex to set up
  • better options for performance tuning
  • fit for a production database
  • can scale well if tuned properly
  • can manage users, permissions, etc.
link|flag
10  
I'd disagree with the "not fit for production" comment for SQLite. For its intended purpose (little concurrency), SQLite is perfectly suitable for production use. I wouldn't run a public-facing web site with it, but there are lots of applications where SQLite is a perfect fit. – Kristopher Johnson Sep 15 '08 at 11:29
3  
According to the SQLite page it's appropriate for sites that get up to 100k hits/day. That covers a lot of ground. – jcollum Jan 26 at 21:36
"Not fit for production" is quite a generalization. SQLite is used by Google, Adobe, Mozilla, Opera and many others. Even if you are trying to say to say that it is not fit for "production" use on a multi user environment, you are incorrect. – Sam Oct 20 at 10:49
I think the generalization is OK here, though perhaps the wording could be better? MySQL is more oriented towards enterprise production use than SQLite. Maybe would be better to say "less fit for large scale production" or "more fit for large scale production" – Justin Standard Oct 23 at 17:33
vote up 7 vote down

Check this link. I think it is quite resonable and it is hard to add anything more.

link|flag
1  
+1, why re-create the wheel? – jcollum Jan 26 at 21:37
vote up 6 vote down

From personal experience, I'd say SQLite is production worthy, just not when you're running a web site like stack overflow 8^D

I have two applications that use SQLite for the primary data source since they are database style applications. It is FAR easier to deploy this than the Microsoft equivalent and providing updates is as simple as zipping up the file and having the user download and unpack it.

In addition, you can use it for serializing basic objects without the hassle of versioning/updates. I will admit part of my dilemma most likely stems from taking my first crack at things, but I had developed a custom object I wanted serialized to a file, followed all the recommended norms, and then had my application not be able to read previous versions when I added a new field. With SQLite, you can modify to your hearts delight, and not break anything.

link|flag
vote up 4 vote down

Justin's answer seems to be evaluating from the perspective of a multiuser app (and is a good evaluation). It's good to note though that sqlite has a lot of "single user" production applications. By going single user you get rid of the security and concurrency issues. This allows you access to data via SQL without the overhead of running a server. In practical terms, they are great for "personal databases". Adium X, the sorta-pidgin-port for Mac OS X uses sqlite for its chat logs. I've not personally confirmed this, but my understanding is that the "awesome bar" in Firefox 3 is implemented using sqlite. Also, Mac OS X has an entire data storage API that's built on top of sqlite (which, now that I think about it, is probably why Adium X is using it). I believe the security issues are addressed at the OS layer (unix file permissions, etc).

So, while sqlite is not appropriate for large multiuser production applications, it works quite well for single user production apps.

link|flag
vote up 10 vote down

SQLite is being use a lot in client-side data stores: Firefox uses it extensively, various apps Apple wrote for the iPhone use it, yum on Linux was rewritten to use it. It's probably more flexible (especially in data structures and indexing) and easy to use than the Berkeley DB's and custom binary formats that some of these things previously depended upon.

All those things have something in common: only one process/thread will probably want to write to the database at a time, and a relatively small number of things are going to want to read from it. SQLite blocks all other IO on the table during a write, which isn't so much for multi-user/multi-threaded the whole table when you start doing an update.

If you prototype with SQLite, be careful. It's "weakly typed" by default -- you can put a string into an integer column unless you enable strict affinity mode and I'm not sure if that's been implemented yet.

link|flag
vote up 2 vote down

To echo what @jaredg said - SQLite won't handle multi-user or even multi-threaded use since writes lock the database. That means you can't even read from the database while it's being updated. More on my experiences with it here.

link|flag
Sqlite does handle multi user and multi threaded reading. – tuinstoel Mar 28 at 15:55
tuinstoel - when you say it handles it, does it handle it by locking the entire database when any thread writes to the database, requiring all other threads to wait or retry unti they succeed? That's all it did when I last checked. – Jon Galloway Jul 21 at 17:03
I just wanted to say that you can do multi-user and multi-threaded reading (select). – tuinstoel Jul 26 at 11:53
vote up 3 vote down

But SQLite handles multi-user fine if all you are doing is reading. Reading does not require a lock. So SQLite can run any well trafficed site/app that doesn't require modifying records. Or where 1 person is doing the editing. Like a blog with no comments.

It's small, available on all platforms and free. Also open source, and the code is well documented. So change what you want. I think SQLite is fit for mass production. Look at Firefox, iTunes, etc, etc.

And to the OP: Compared to any other SQL server MySQL is easy peasy to set up. I mean com'on, on Windows you install answer a few questions and you off. Pretty much the same on Mac or any Linux destro.

link|flag
vote up 4 vote down

There is an excellent interview with D. Richard Hipp, creator of SQLite, on FLOSS Weekly. In this interview, he discusses when, and when not, to use SQLite among many other things.

FLOSS Weekly 26: SQLite

link|flag
vote up 6 vote down

It seems for a huge majority of sites using MySQL, SQLite would be more than adequate. It just seems to be a mindset that "if it's anything resembling production, I have to use MySQL!"

I would say that if you don't have to do any performance-fiddling with MySQL, you can get away with using SQLite..

link|flag
2  
@dbr: I second what you said - most people could do more with SQLite without the need for MySQL. We recently had a project based on SQLite and it still works to this day without a glitch. I think it's again down to the mindset that if it's not MySQL, then it's not database enough. – Helen Neely Sep 23 at 16:06
vote up 3 vote down

Another difference: SQLite supports transactions without the overhead of InnoDB. I would consider SQLite for a website running on a VPS with very little memory.

link|flag
vote up 4 vote down

We heavily use both SQLite and MySQL in production.

The SQLite databases get used where we have a large amount of mostly read-only data. We build this datasource from a large number of flat files held in our subversion repository, and then distribute copies of the data to production nodes which require access to it.

Profiling SQLite is much trickier than with MySQL - particularly if you're wanting to get data from your production nodes. This is something you'd have to do in your application. It's also less than straightforward to have SQLite's query planner tell you what it's going to do with certain queries, which makes optimisation tricky.

link|flag
vote up 0 vote down

I am building a simple logging app that will store logs with tags and be private to one user. I plan to use other means for reporting and search, Sphinx indexes, Hadoop, etc. I am about to pull the trigger on using sqlite for the db because then the client and server side db can be exactly the same. I can mail users copies of their db file if things go wrong. I am hoping that I can roll the sqllite logs over if the data gets too huge. I am also wondering if it's possible to index the sqllite files themselves without having to export the data via xml to Sphinx.

link|flag
Not really an answer. Make it it's own question and fix it so it's really a question. – jcollum Jan 26 at 21:39
vote up 1 vote down

I use sqlite as development db for website and then deploy to mysql on production. This is easier to setup and since data are stored in simple flat file you can copy / move them like you want (great when you try to make major structure change but want revert back option).

I also use sqlite as desktop apps file save format for anything that look/sound/smell like "save"/"save as"/"load"/"import"/"export".

link|flag
vote up 1 vote down

mysql vs sqlite r 2 plataforms por diferentes applications, sqlite is perfect por standalone apps or databases and querys veri ligth, and mysql is pefect for client-server apps more complex apps

link|flag

Your Answer

Get an OpenID
or

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