show/hide this revision's text 2 added 551 characters in body

Let's see, quick comparison:

SQLite:

  • dynamic typing in the database,
  • cross-platform files
  • runs on Windows, Linux, Mac, etc.
  • public domain,
  • supports transactions.
  • relies on file system security, does not include own security

Firebird embedded:

  • strong typing in the database , though
    • not all SQL datatypes are supported,
  • cross-platform files ,
    • Firebird embedded only runs on Windows
    • Files from Firebird embedded are in the same format as the full server version
    • Files from Firebird embedded can be copied to a non-Windows server for use
  • available under a modified MPL ("what's ours is ours and must remain free, what's yours is yours and you don't have to release it"), it")
  • supports transactions, triggers, etc.

MySQL embedded:

  • support for SQL features depends on file format,
  • (IIRC) cross-platform files,
  • GPL unless you pay royalties
  • runs on Windows, Linux, Mac
  • incredibly popular .with the open source crowd

Even embedded databases have their strengths and weaknesses. You'll need to weigh those strengths and weaknesses against what you're doing to decide.

    Post Made Community Wiki by Community
show/hide this revision's text 1

Let's see, quick comparison:

SQLite: dynamic typing in the database, cross-platform files, public domain, supports transactions.

Firebird embedded: strong typing in the database, though not all SQL datatypes are supported, cross-platform files, available under a modified MPL ("what's ours is ours and must remain free, what's yours is yours and you don't have to release it"), supports transactions, triggers, etc.

MySQL embedded: support for SQL features depends on file format, (IIRC) cross-platform files, GPL unless you pay royalties, incredibly popular.

Even embedded databases have their strengths and weaknesses. You'll need to weigh those strengths and weaknesses against what you're doing to decide.