I must confess I'm really liking #SQLite right now.
The database is just a file. You can put it anywhere, even on a network file system. There is no user name, no password, no IP address and port number, no certificate, and no separate RDBMS process to babysit.
And yet it's still a proper database with SQL and ACID and all. I can query it like any other database, even if there is some other program writing to the database at the same time.
Beautiful.