|
|
|
|
|
by SFjulie1
4012 days ago
|
|
Apple uses MVC with sqlite for the contacts. The view is cocoa, but every events int the GUI are calling triggers in sqlite. It makes apple's application simple stupid and efficient. And they have triggers on foreign keys... with sqlite. ... It is not postgres in one of it, it is much more mysql is not a correct rdbms. None of the other databases have this flaw. Mysql is to RDBMS what mongo is to NoSQL, nowhere short of achieving anything that matters correctly. EDIT: or better: Mysql is a realistic in the Hollywood way implementation of a RDBMS |
|
postgres usually outperforms mysql for more complex operations, but is not as fast as mysql for simple ones.
sqlite is really only appropriate for things like mobile or desktop applications or things with generally low concurrency requirements.
i would be careful throwing the baby out with the bath water in your dismissal of mysql, but thats just my opinion:)
can you shed some more detail on that apple uses triggers with sqlite? that is interesting to me, and would like to learn more.