I'm reading the book Android Database Programming
And I'm wondering to know if what said here is correct:
for those who are well versed in SQL programming and database schemas, you might be wondering if it's possible to add triggers and key constraints to your SQLite database schemas. The answer is, "yes, you can use triggers but no, you cannot use foreign key constraints."
and also:
remember that Android's SQLite database doesn't support key constraints
This is strange for me, because I know that I can use (from SQLite 3.6.19)
setForeignKeyConstraintsEnabled
method for enabling FK constraints, or I can follow this
I'm confused. So the question is: Why the book aforementioned said that FK are not supported? Considering that at time of publishing (June 2012), Android 4.0.3 (SQLite 3.7.4) was already released.