views:

51

answers:

1

Do you know of any SQLite alternatives (Portable/flatfile based/serverless) that have foreign key constraint and/or offer transaction support?

+4  A: 

As of version 3.6.19, SQLite supports foreign key constraints.

And as far as I know it already supports transactions? What did you have in mind?

integer
And before 3.6.19, you could write triggers to enforce foreign key constraints. There was a `genfkey` program for this.
dan04